diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-05-20 00:45:49 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-05-20 00:45:49 +1000 |
commit | e77bb87b419567660e0a666b5b016e856f53242b (patch) | |
tree | 16ded88ee70ed5ed51cf4e0c5bfd9db2ab01a286 /include | |
parent | f797e6c4676a69b862a1db316fafa591ebe269f3 (diff) |
vcl: rename CopyAreaFinal to CopyDeviceArea
The name I gave this makes no sense. Basically, this function calls on
the SalGraphics function to copy the area, so really this name is much
more clear.
Change-Id: I842e6f2b81014a8222c39a62c5437bd53d66141c
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/outdev.hxx | 2 | ||||
-rw-r--r-- | include/vcl/window.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 676cf08f557d..04b18776ab07 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -515,7 +515,7 @@ public: protected: - virtual void CopyAreaFinal( SalTwoRect& aPosAry, sal_uInt32 nFlags); + virtual void CopyDeviceArea( SalTwoRect& aPosAry, sal_uInt32 nFlags); private: diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index b24e9339241a..c9f8390b7626 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -643,7 +643,7 @@ protected: // FIXME: this is a hack to workaround missing layout functionality SAL_DLLPRIVATE void ImplAdjustNWFSizes(); - virtual void CopyAreaFinal( SalTwoRect& aPosAry, sal_uInt32 nFlags) SAL_OVERRIDE; + virtual void CopyDeviceArea( SalTwoRect& aPosAry, sal_uInt32 nFlags) SAL_OVERRIDE; virtual void ClipToPaintRegion( Rectangle& rDstRect ) SAL_OVERRIDE; virtual bool UsePolyPolygonForComplexGradient() SAL_OVERRIDE; |