From fe86d0ca5daeadd8bde74e27109bcb65402ce139 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 23 Feb 2013 15:37:28 +0100 Subject: Fix typo "paramater" -> "parameter" + remove some commented lines Change-Id: I1e6343fdcee91d23aacd776520e8bfdf81d411e4 --- svtools/inc/svtools/brwbox.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'svtools') diff --git a/svtools/inc/svtools/brwbox.hxx b/svtools/inc/svtools/brwbox.hxx index 7e2ed70d7b04..8c9b70bb0fc6 100644 --- a/svtools/inc/svtools/brwbox.hxx +++ b/svtools/inc/svtools/brwbox.hxx @@ -714,8 +714,8 @@ public: // Conversions ------------------------------------------------------------ /** Converts a point relative to the data window origin to a cell address. - @param rnRow Out-paramater that takes the row index. - @param rnColumnId Out-paramater that takes the column ID. + @param rnRow Out-parameter that takes the row index. + @param rnColumnId Out-parameter that takes the column ID. @param rPoint The position in pixels relative to the data window. @return , if the point could be converted to a valid address. */ virtual sal_Bool ConvertPointToCellAddress( @@ -723,21 +723,21 @@ public: /** Converts a point relative to the row header bar origin to a row header index. - @param rnRow Out-paramater that takes the row index. + @param rnRow Out-parameter that takes the row index. @param rPoint The position in pixels relative to the header bar. @return , if the point could be converted to a valid index. */ virtual sal_Bool ConvertPointToRowHeader( sal_Int32& rnRow, const Point& rPoint ); /** Converts a point relative to the column header bar origin to a column header index. - @param rnColumnId Out-paramater that takes the column ID. + @param rnColumnId Out-parameter that takes the column ID. @param rPoint The position in pixels relative to the header bar. @return , if the point could be converted to a valid index. */ virtual sal_Bool ConvertPointToColumnHeader( sal_uInt16& rnColumnPos, const Point& rPoint ); /** Converts a point relative to the BrowseBox origin to the index of an existing control. - @param rnRow Out-paramater that takes the 0-based control index. + @param rnRow Out-parameter that takes the 0-based control index. @param rPoint The position in pixels relative to the BrowseBox. @return , if the point could be converted to a valid index. */ virtual sal_Bool ConvertPointToControlIndex( sal_Int32& rnIndex, const Point& rPoint ); -- cgit