diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 19:11:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-27 19:11:21 +0100 |
commit | 8e4560e709fb565c69f1950387a812e543d98e22 (patch) | |
tree | f847810e1da2cc240d9ed7eb8686bfb092b77c10 /vcl/inc/quartz/salbmp.h | |
parent | c62d31f791d7e09fdca5dd185603c78b47f19597 (diff) |
SAL_OVERRIDE, Mac OS X vcl redux
Change-Id: I25f2a79efff7b77651f7cd6c658269e9411c3bdd
Diffstat (limited to 'vcl/inc/quartz/salbmp.h')
-rw-r--r-- | vcl/inc/quartz/salbmp.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/vcl/inc/quartz/salbmp.h b/vcl/inc/quartz/salbmp.h index 1e946d214b52..c96257d5d43b 100644 --- a/vcl/inc/quartz/salbmp.h +++ b/vcl/inc/quartz/salbmp.h @@ -63,23 +63,23 @@ public: public: // SalBitmap methods - bool Create( const Size& rSize, sal_uInt16 nBitCount, const BitmapPalette& rPal ); - bool Create( const SalBitmap& rSalBmp ); - bool Create( const SalBitmap& rSalBmp, SalGraphics* pGraphics ); - bool Create( const SalBitmap& rSalBmp, sal_uInt16 nNewBitCount ); + bool Create( const Size& rSize, sal_uInt16 nBitCount, const BitmapPalette& rPal ) SAL_OVERRIDE; + bool Create( const SalBitmap& rSalBmp ) SAL_OVERRIDE; + bool Create( const SalBitmap& rSalBmp, SalGraphics* pGraphics ) SAL_OVERRIDE; + bool Create( const SalBitmap& rSalBmp, sal_uInt16 nNewBitCount ) SAL_OVERRIDE; virtual bool Create( const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XBitmapCanvas > xBitmapCanvas, Size& rSize, - bool bMask = false ); + bool bMask = false ) SAL_OVERRIDE; - void Destroy(); + void Destroy() SAL_OVERRIDE; - Size GetSize() const; - sal_uInt16 GetBitCount() const; + Size GetSize() const SAL_OVERRIDE; + sal_uInt16 GetBitCount() const SAL_OVERRIDE; - BitmapBuffer *AcquireBuffer( bool bReadOnly ); - void ReleaseBuffer( BitmapBuffer* pBuffer, bool bReadOnly ); + BitmapBuffer *AcquireBuffer( bool bReadOnly ) SAL_OVERRIDE; + void ReleaseBuffer( BitmapBuffer* pBuffer, bool bReadOnly ) SAL_OVERRIDE; - bool GetSystemData( BitmapSystemData& rData ); + bool GetSystemData( BitmapSystemData& rData ) SAL_OVERRIDE; private: // quartz helper |