diff options
-rw-r--r-- | vcl/inc/win/salvd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/win/salvd.h b/vcl/inc/win/salvd.h index a695bc75f116..1e40ed706324 100644 --- a/vcl/inc/win/salvd.h +++ b/vcl/inc/win/salvd.h @@ -38,13 +38,13 @@ private: bool mbForeignDC; // uses a foreign DC instead of a bitmap long mnWidth; long mnHeight; + public: HDC getHDC() const { return mhLocalDC; } WinSalGraphics* getGraphics() const { return mpGraphics; } void setGraphics(WinSalGraphics* pVirGraphics) { mpGraphics = pVirGraphics; } WinSalVirtualDevice* getNext() const { return mpNext; } -public: WinSalVirtualDevice(HDC hDC = nullptr, HBITMAP hBMP = nullptr, sal_uInt16 nBitCount = 0, bool bForeignDC = false, long nWidth = 0, long nHeight = 0); virtual ~WinSalVirtualDevice() override; |