diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2014-11-29 21:42:47 +0000 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-12-02 08:34:51 +0100 |
commit | c22d5338fad383800b35efa458561bb89b604922 (patch) | |
tree | 2d73a2735803cd9df83d9a96b4c90504ff909d35 /vcl/inc | |
parent | 1c6843f426314637e542949e8c71542a1c33d3c9 (diff) |
vcl: remove SalVirtualDevice::GetWidth
It is presumed that #i59315# is fixed already, and that this is no
longer necessary.
Change-Id: Ifb2f6550fac2481c4fec269b38d6e806753cb53e
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/headless/svpvd.hxx | 1 | ||||
-rw-r--r-- | vcl/inc/opengl/x11/salvd.hxx | 1 | ||||
-rw-r--r-- | vcl/inc/quartz/salvd.h | 1 | ||||
-rw-r--r-- | vcl/inc/salvd.hxx | 3 | ||||
-rw-r--r-- | vcl/inc/unx/salvd.h | 3 | ||||
-rw-r--r-- | vcl/inc/win/salvd.h | 1 |
6 files changed, 1 insertions, 9 deletions
diff --git a/vcl/inc/headless/svpvd.hxx b/vcl/inc/headless/svpvd.hxx index e69bf8f4828c..eb6b8d1b2b0c 100644 --- a/vcl/inc/headless/svpvd.hxx +++ b/vcl/inc/headless/svpvd.hxx @@ -45,7 +45,6 @@ public: const basebmp::RawMemorySharedArray &pBuffer, const bool bTopDown ) SAL_OVERRIDE; - virtual void GetSize( long& rWidth, long& rHeight ) SAL_OVERRIDE; basebmp::BitmapDeviceSharedPtr getBitmapDevice() { return m_aDevice; } }; diff --git a/vcl/inc/opengl/x11/salvd.hxx b/vcl/inc/opengl/x11/salvd.hxx index 0d7143b2b01f..7696e04c62ac 100644 --- a/vcl/inc/opengl/x11/salvd.hxx +++ b/vcl/inc/opengl/x11/salvd.hxx @@ -47,7 +47,6 @@ public: // Set new size, without saving the old contents virtual bool SetSize( long nNewDX, long nNewDY ) SAL_OVERRIDE; - virtual void GetSize( long& rWidth, long& rHeight ) SAL_OVERRIDE; }; #endif // INCLUDED_VCL_INC_OPENGL_X11_SALVD_H diff --git a/vcl/inc/quartz/salvd.h b/vcl/inc/quartz/salvd.h index f48a19a1915d..e1d1d5137c33 100644 --- a/vcl/inc/quartz/salvd.h +++ b/vcl/inc/quartz/salvd.h @@ -61,7 +61,6 @@ public: virtual SalGraphics* AcquireGraphics() SAL_OVERRIDE; virtual void ReleaseGraphics( SalGraphics* pGraphics ) SAL_OVERRIDE; virtual bool SetSize( long nNewDX, long nNewDY ) SAL_OVERRIDE; - virtual void GetSize( long& rWidth, long& rHeight ) SAL_OVERRIDE; }; #endif // INCLUDED_VCL_INC_QUARTZ_SALVD_H diff --git a/vcl/inc/salvd.hxx b/vcl/inc/salvd.hxx index f5a63eea461b..13979359919d 100644 --- a/vcl/inc/salvd.hxx +++ b/vcl/inc/salvd.hxx @@ -49,9 +49,6 @@ public: // pBuffer (and bTopDown). return SetSize( nNewDX, nNewDY ); } - - /// Get actual VDev size in pixel - virtual void GetSize( long& rWidth, long& rHeight ) = 0; }; #endif // INCLUDED_VCL_INC_SALVD_HXX diff --git a/vcl/inc/unx/salvd.h b/vcl/inc/unx/salvd.h index b1caa68f0a39..9b520a7c848c 100644 --- a/vcl/inc/unx/salvd.h +++ b/vcl/inc/unx/salvd.h @@ -71,9 +71,8 @@ public: virtual SalGraphics* AcquireGraphics() SAL_OVERRIDE; virtual void ReleaseGraphics( SalGraphics* pGraphics ) SAL_OVERRIDE; - // Set new size, without saving the old contents + /// Set new size, without saving the old contents virtual bool SetSize( long nNewDX, long nNewDY ) SAL_OVERRIDE; - virtual void GetSize( long& rWidth, long& rHeight ) SAL_OVERRIDE; }; #endif // INCLUDED_VCL_INC_UNX_SALVD_H diff --git a/vcl/inc/win/salvd.h b/vcl/inc/win/salvd.h index 2c59f47ab7e9..9abb46bf4ebc 100644 --- a/vcl/inc/win/salvd.h +++ b/vcl/inc/win/salvd.h @@ -50,7 +50,6 @@ public: virtual SalGraphics* AcquireGraphics(); virtual void ReleaseGraphics( SalGraphics* pGraphics ); virtual bool SetSize( long nNewDX, long nNewDY ); - virtual void GetSize( long& rWidth, long& rHeight ); static HBITMAP ImplCreateVirDevBitmap(HDC hDC, long nDX, long nDY, sal_uInt16 nBitCount, void **ppDummy); }; |