diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-02-07 22:10:11 +1100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-07 16:57:53 +0000 |
commit | 455d970206b4d5dda8120bdc1958885c2607e354 (patch) | |
tree | 320a9811a40f2e5193f9a084ca5c1b1962bd53a7 /vcl/source/window/dndevdis.cxx | |
parent | 738bd2cfd446debbc0e08fb5500004276fa28c7d (diff) |
Renamed VCL's OutputDevice mirroring functions
I have renamed the following functions:
* ImplReMirror -> ReMirror
* ImplHasMirroredGraphics -> HasMirroredGraphics
This has been done because these functions are definitely public
and there is no need to prefix them with "Impl" as they are exposed
to other objects.
Change-Id: Ib52493c9824e29a038de2fc35736a5ca863c091a
Reviewed-on: https://gerrit.libreoffice.org/7911
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/source/window/dndevdis.cxx')
-rw-r--r-- | vcl/source/window/dndevdis.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/dndevdis.cxx b/vcl/source/window/dndevdis.cxx index e278e9554369..6fe92e26fb3c 100644 --- a/vcl/source/window/dndevdis.cxx +++ b/vcl/source/window/dndevdis.cxx @@ -69,7 +69,7 @@ Window* DNDEventDispatcher::findTopLevelWindow(Point location) if( pChildWindow->ImplIsAntiparallel() ) { const OutputDevice *pChildWinOutDev = pChildWindow->GetOutDev(); - pChildWinOutDev->ImplReMirror( location ); + pChildWinOutDev->ReMirror( location ); } return pChildWindow; |