diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:52:24 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-06-13 17:54:34 +0200 |
commit | 6b8440134f4a8fa05450cdd492942e92c1f75803 (patch) | |
tree | 841b302f0544fe73d1f30fd97e6f0db5030ae752 /svx/source/svdraw/svdedxv.cxx | |
parent | 30069114fef2858936c988e8fbc92a69b2ddc8d3 (diff) |
loplugin:staticcall
Change-Id: I41ecb2b80251f56823f6b59c0746ff50531e6c84
Diffstat (limited to 'svx/source/svdraw/svdedxv.cxx')
-rw-r--r-- | svx/source/svdraw/svdedxv.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx index 62785952fc57..c8a7ae73feca 100644 --- a/svx/source/svdraw/svdedxv.cxx +++ b/svx/source/svdraw/svdedxv.cxx @@ -1141,7 +1141,7 @@ bool SdrObjEditView::IsTextEditHit(const Point& rHit, short nTol) const long nHitTol = 2000; OutputDevice* pRef = pTextEditOutliner->GetRefDevice(); if( pRef ) - nHitTol = pRef->LogicToLogic( nHitTol, MAP_100TH_MM, pRef->GetMapMode().GetMapUnit() ); + nHitTol = OutputDevice::LogicToLogic( nHitTol, MAP_100TH_MM, pRef->GetMapMode().GetMapUnit() ); bOk = pTextEditOutliner->IsTextPos( aPnt, (sal_uInt16)nHitTol ); } |