diff options
Diffstat (limited to 'vcl/inc/salvd.hxx')
-rw-r--r-- | vcl/inc/salvd.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/vcl/inc/salvd.hxx b/vcl/inc/salvd.hxx index 35084c746f4a..2afebbefb756 100644 --- a/vcl/inc/salvd.hxx +++ b/vcl/inc/salvd.hxx @@ -34,21 +34,21 @@ public: // public for Sal Implementation // SalGraphics or NULL, but two Graphics for all SalVirtualDevices // must be returned - virtual SalGraphics* GetGraphics() = 0; - virtual void ReleaseGraphics( SalGraphics* pGraphics ) = 0; + virtual SalGraphics* GetGraphics() = 0; + virtual void ReleaseGraphics( SalGraphics* pGraphics ) = 0; // Set new size, without saving the old contents - virtual sal_Bool SetSize( long nNewDX, long nNewDY ) = 0; + virtual sal_Bool SetSize( long nNewDX, long nNewDY ) = 0; // Set new size using a buffer at the given address - virtual sal_Bool SetSizeUsingBuffer( long nNewDX, long nNewDY, const basebmp::RawMemorySharedArray & /* pBuffer */ ) - { - // Only the headless virtual device has an implementation that uses pBuffer. - return SetSize( nNewDX, nNewDY ); - } + virtual sal_Bool SetSizeUsingBuffer( long nNewDX, long nNewDY, const basebmp::RawMemorySharedArray & /* pBuffer */ ) + { + // Only the headless virtual device has an implementation that uses pBuffer. + return SetSize( nNewDX, nNewDY ); + } /// Get actual VDev size in pixel - virtual void GetSize( long& rWidth, long& rHeight ) = 0; + virtual void GetSize( long& rWidth, long& rHeight ) = 0; }; #endif // _SV_SALVD_HXX |