diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-02-23 15:37:28 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-02-23 15:37:28 +0100 |
commit | fe86d0ca5daeadd8bde74e27109bcb65402ce139 (patch) | |
tree | 6dee09d6b40ef6cbd50b4ce541c7adb65e957e87 /svtools/inc | |
parent | 7c7755473e41f28e78dc79b885f8a39783f64699 (diff) |
Fix typo "paramater" -> "parameter" + remove some commented lines
Change-Id: I1e6343fdcee91d23aacd776520e8bfdf81d411e4
Diffstat (limited to 'svtools/inc')
-rw-r--r-- | svtools/inc/svtools/brwbox.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
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 <TRUE/>, 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 <TRUE/>, 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 <TRUE/>, 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 <TRUE/>, if the point could be converted to a valid index. */ virtual sal_Bool ConvertPointToControlIndex( sal_Int32& rnIndex, const Point& rPoint ); |