diff options
author | Noel Grandin <noel@peralex.com> | 2012-12-13 11:48:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2012-12-13 11:49:27 +0200 |
commit | d04ee940a04922f6fc511882cff956a03b39583b (patch) | |
tree | 9c0d8154761eda00fc3d24442f34fdcb844d319f /vcl/win/source/window | |
parent | 634ee953f1d090871834f6bc53faafaa7b96b874 (diff) |
second attempt to fix my UNO changes under Windows
Change-Id: I18764f58effcf46581e7456742df2267f41090f5
Diffstat (limited to 'vcl/win/source/window')
-rw-r--r-- | vcl/win/source/window/salframe.cxx | 8 |
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& ) |