diff options
author | Oliver Bolte <obo@openoffice.org> | 2003-12-03 13:47:04 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2003-12-03 13:47:04 +0000 |
commit | 836bcd745caeed18aa405cf6820388c15c0f1f3f (patch) | |
tree | 9e06446108a74d43c39512f0ee034afc0e943c0a | |
parent | 220242e6f73291c43fee24a53ff87e2ab39541c3 (diff) |
#100000# maGraphicsData obsolete
-rw-r--r-- | vcl/win/source/gdi/salgdi.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/win/source/gdi/salgdi.cxx b/vcl/win/source/gdi/salgdi.cxx index e543076144a0..eb8923a9d247 100644 --- a/vcl/win/source/gdi/salgdi.cxx +++ b/vcl/win/source/gdi/salgdi.cxx @@ -2,9 +2,9 @@ * * $RCSfile: salgdi.cxx,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: rt $ $Date: 2003-12-01 12:19:31 $ + * last change: $Author: obo $ $Date: 2003-12-03 14:47:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -829,8 +829,8 @@ WinSalGraphics::~WinSalGraphics() void WinSalGraphics::GetResolution( long& rDPIX, long& rDPIY ) { - rDPIX = GetDeviceCaps( maGraphicsData.mhDC, LOGPIXELSX ); - rDPIY = GetDeviceCaps( maGraphicsData.mhDC, LOGPIXELSY ); + rDPIX = GetDeviceCaps( mhDC, LOGPIXELSX ); + rDPIY = GetDeviceCaps( mhDC, LOGPIXELSY ); // #111139# this fixes the symptom of div by zero on startup // however, printing will fail most likely as communication with |