summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-11-10 09:41:24 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-11-10 09:41:24 +0100
commita49095dfcde9f1a3d1c04b4cdc3a50f5fc261f3d (patch)
tree3b48534039ee6cf133e82be81a1f8d17babbdb88
parent2c91a06253fcd02f9cf5196ff994f83a54d3d0ab (diff)
loplugin:staticcall
Change-Id: I33927305351b6e84721c11e3a1814266b41db8da
-rw-r--r--vcl/unx/generic/gdi/gdiimpl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/gdi/gdiimpl.cxx b/vcl/unx/generic/gdi/gdiimpl.cxx
index 172ebd6314fb..efe66d8fe3d3 100644
--- a/vcl/unx/generic/gdi/gdiimpl.cxx
+++ b/vcl/unx/generic/gdi/gdiimpl.cxx
@@ -178,7 +178,7 @@ X11Pixmap* X11SalGraphicsImpl::GetPixmapFromScreen( const Rectangle& rRect )
}
// Copy the background of the screen into a composite pixmap
- mrParent.CopyScreenArea( mrParent.GetXDisplay(),
+ X11SalGraphics::CopyScreenArea( mrParent.GetXDisplay(),
mrParent.GetDrawable(), mrParent.GetScreenNumber(),
mrParent.GetVisual().GetDepth(),
pPixmap->GetDrawable(), pPixmap->GetScreen(),
@@ -206,7 +206,7 @@ bool X11SalGraphicsImpl::RenderPixmapToScreen( X11Pixmap* pPixmap, int nX, int n
if( !pPixmap )
return false;
- mrParent.CopyScreenArea( mrParent.GetXDisplay(),
+ X11SalGraphics::CopyScreenArea( mrParent.GetXDisplay(),
pPixmap->GetDrawable(), pPixmap->GetScreen(),
pPixmap->GetDepth(),
mrParent.GetDrawable(), mrParent.m_nXScreen,