summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/outdev/outdev.cxx4
-rw-r--r--vcl/source/window/window.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx
index 3d5241c7486c..7be114ac1ee3 100644
--- a/vcl/source/outdev/outdev.cxx
+++ b/vcl/source/outdev/outdev.cxx
@@ -679,7 +679,7 @@ void OutputDevice::CopyArea( const Point& rDestPt,
AdjustTwoRect( aPosAry, aSrcOutRect );
- CopyAreaFinal ( aPosAry, nFlags );
+ CopyDeviceArea ( aPosAry, nFlags );
}
SetRasterOp( eOldRop );
@@ -690,7 +690,7 @@ void OutputDevice::CopyArea( const Point& rDestPt,
// Direct OutputDevice drawing protected function
-void OutputDevice::CopyAreaFinal( SalTwoRect& aPosAry, sal_uInt32 /*nFlags*/)
+void OutputDevice::CopyDeviceArea( SalTwoRect& aPosAry, sal_uInt32 /*nFlags*/)
{
if (aPosAry.mnSrcWidth == 0 || aPosAry.mnSrcHeight == 0 || aPosAry.mnDestWidth == 0 || aPosAry.mnDestHeight == 0)
return;
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index 063a7f5d7cad..ce8f7df8d63b 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -403,7 +403,7 @@ void Window::EnableRTL ( bool bEnable )
OutputDevice::EnableRTL(bEnable);
}
-void Window::CopyAreaFinal( SalTwoRect& aPosAry, sal_uInt32 nFlags )
+void Window::CopyDeviceArea( SalTwoRect& aPosAry, sal_uInt32 nFlags )
{
if (aPosAry.mnSrcWidth == 0 || aPosAry.mnSrcHeight == 0 || aPosAry.mnDestWidth == 0 || aPosAry.mnDestHeight == 0)
return;
@@ -426,7 +426,7 @@ void Window::CopyAreaFinal( SalTwoRect& aPosAry, sal_uInt32 nFlags )
return;
}
- OutputDevice::CopyAreaFinal(aPosAry, nFlags);
+ OutputDevice::CopyDeviceArea(aPosAry, nFlags);
}
bool Window::HasMirroredGraphics() const