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 /svx | |
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 'svx')
-rw-r--r-- | svx/source/sdr/overlay/overlayselection.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/sdr/overlay/overlayselection.cxx b/svx/source/sdr/overlay/overlayselection.cxx index e5de59702ade..f230ff88c051 100644 --- a/svx/source/sdr/overlay/overlayselection.cxx +++ b/svx/source/sdr/overlay/overlayselection.cxx @@ -82,7 +82,7 @@ namespace sdr return OVERLAY_INVERT; } - if(!pOut->supportsOperation(OutDevSupport_TransparentRect)) + if(!pOut->SupportsOperation(OutDevSupport_TransparentRect)) { // not possible when no fast transparence paint is supported on the system return OVERLAY_INVERT; |