summaryrefslogtreecommitdiffstats
path: root/include/vcl/bitmap.hxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-01-30 02:23:42 +1100
committerCaolán McNamara <caolanm@redhat.com>2014-02-04 14:39:21 +0000
commitff8036df5c5575503dc30d255dfbe99cc637c510 (patch)
tree56ab7e1e37855f32f92fa1538890005420c1a30f /include/vcl/bitmap.hxx
parentMore Application class documentation updates (diff)
downloadcore-ff8036df5c5575503dc30d255dfbe99cc637c510.tar.gz
core-ff8036df5c5575503dc30d255dfbe99cc637c510.zip
Doxygen warnings corrected
* Doxygen spits out a lot of warnings about not being able to find match function signatures, etc. This is because in some headers we have a using namespace statement, in others it gets confused between ::Window and Window (!). * Wrong use of tags: + Lots of @seealso - should be @see + Wrong usage of @overload - corrected with the right function signature + HTML tags that doxygen doesn't recognize removed Conflicts: include/vcl/toolbox.hxx Change-Id: I687f45e426280d411ef3cb6d8d5993a829f2f324 Reviewed-on: https://gerrit.libreoffice.org/7725 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/bitmap.hxx')
-rw-r--r--include/vcl/bitmap.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index adf6b63785a8..9003be4b995e 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -449,9 +449,6 @@ public:
@param nDitherFlags
The algorithm to be used for dithering
-
- @param pDitherPal
- A custom palette to be used when dithering (not yet implemented, leave NULL)
*/
sal_Bool Dither( sal_uLong nDitherFlags = BMP_DITHER_MATRIX );
@@ -591,6 +588,9 @@ public:
@param rScaleY
The scale factor in y direction.
+ @param nScaleFlag
+ Method of scaling - it is recommended that either BMP_SCALE_DEFAULT or BMP_SCALE_BESTQUALITY be used.
+
@return sal_True, if the operation was completed successfully.
*/
sal_Bool Scale( const double& rScaleX, const double& rScaleY, sal_uInt32 nScaleFlag = BMP_SCALE_DEFAULT );
@@ -688,16 +688,16 @@ public:
/** Replace all pixel having one the search colors with the corresponding replace color
- @param pSearchColor
+ @param pSearchColors
Array of colors specifying which pixel should be replaced
- @param pReplaceColor
+ @param rReplaceColors
Array of colors to be placed in all changed pixel
@param nColorCount
Size of the aforementioned color arrays
- @param nTol
+ @param pTols
Tolerance value. Specifies the maximal difference between
pSearchColor colors and the individual pixel values, such that
the corresponding pixel is still regarded a match.