diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-28 00:10:47 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-28 00:14:56 +1000 |
commit | e474c95cdec503bc2abb90619a7a3677d2942a63 (patch) | |
tree | de7dda3deeefbc941f400c81f70767f0a4aa5c85 /include | |
parent | 99ab3189c835bca4766b7539397b4a581bc67677 (diff) |
VCL: Renamed two functions
Renamed functions:
+ supportsOperation -> SupportsOperation
For consistency
+ DrawAlphaBitmap -> DrawDeviceAlphaBitmap
I want to make it more clear that these are the functions that call
on mpGraphics to actually draw on the graphics device
Change-Id: Ic4951bfcc0ac0c09fe5b6908dfdf1f699a634265
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/outdev.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 28af36433983..a22d407d07e0 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -470,7 +470,7 @@ public: @returns true if operation supported, else false */ - bool supportsOperation( OutDevSupportType ) const; + bool SupportsOperation( OutDevSupportType ) const; vcl::PDFWriterImpl* GetPDFWriter() const { return mpPDFWriter; } @@ -734,7 +734,7 @@ private: // #i101491# // Helper who tries to use SalGDI's DrawPolyLine direct and returns it's bool. Contains no AA check. - SAL_DLLPRIVATE bool TryDrawPolyLineDirectNoAA( + SAL_DLLPRIVATE bool TryDrawPolyLineDirectNoAACheck( const basegfx::B2DPolygon& rB2DPolygon, double fLineWidth = 0.0, double fTransparency = 0.0, @@ -1342,7 +1342,7 @@ protected: private: - SAL_DLLPRIVATE void DrawAlphaBitmap( + SAL_DLLPRIVATE void DrawDeviceAlphaBitmap( const Bitmap& rBmp, const AlphaMask& rAlpha, const Point& rDestPt, |