summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'vcl')
-rw-r--r--vcl/win/source/window/salframe.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/win/source/window/salframe.cxx b/vcl/win/source/window/salframe.cxx
index a23ed43e7290..bdee3e169a9c 100644
--- a/vcl/win/source/window/salframe.cxx
+++ b/vcl/win/source/window/salframe.cxx
@@ -789,8 +789,8 @@ static void ImplSalCalcFullScreenSize( const WinSalFrame* pFrame,
Rectangle aRect = Application::GetScreenPosSizePixel( pFrame->mnDisplay );
nScreenX = aRect.Left();
nScreenY = aRect.Top();
- nScreenDX = aRect.GetWidth()+1; // difference between java/awt convention and vcl
- nScreenDY = aRect.GetHeight()+1; // difference between java/awt convention and vcl
+ nScreenDX = aRect.getWidth()+1; // difference between java/awt convention and vcl
+ nScreenDY = aRect.getHeight()+1; // difference between java/awt convention and vcl
}
else
{
@@ -801,8 +801,8 @@ static void ImplSalCalcFullScreenSize( const WinSalFrame* pFrame,
}
nScreenX = aCombined.Left();
nScreenY = aCombined.Top();
- nScreenDX = aCombined.GetWidth();
- nScreenDY = aCombined.GetHeight();
+ nScreenDX = aCombined.getWidth();
+ nScreenDY = aCombined.getHeight();
}
}
catch( Exception& )