summaryrefslogtreecommitdiff
path: root/include/canvas/base
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-12 10:30:08 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-12 16:24:39 +0100
commitea7adb4a3a6d7a3267aeb718b40dd4ed2e693c33 (patch)
tree1f0ecef110c3961a5686ef432cfeccbc59f641cb /include/canvas/base
parent19edde184077eca38ce369304980a8a42fb3ab52 (diff)
Mark overriding IntegerBitmapBase class template member funs as SAL_OVERRIDE
Change-Id: I484ef5c4b31122605287b8e1a5f33108f7b22ea2
Diffstat (limited to 'include/canvas/base')
-rw-r--r--include/canvas/base/integerbitmapbase.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/canvas/base/integerbitmapbase.hxx b/include/canvas/base/integerbitmapbase.hxx
index 79863d69a7d5..6b24afe03c2d 100644
--- a/include/canvas/base/integerbitmapbase.hxx
+++ b/include/canvas/base/integerbitmapbase.hxx
@@ -42,7 +42,7 @@ namespace canvas
public:
// XIntegerBitmap
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getData( ::com::sun::star::rendering::IntegerBitmapLayout& bitmapLayout,
- const ::com::sun::star::geometry::IntegerRectangle2D& rect ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::rendering::VolatileContentDestroyedException, ::com::sun::star::uno::RuntimeException)
+ const ::com::sun::star::geometry::IntegerRectangle2D& rect ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::rendering::VolatileContentDestroyedException, ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
{
tools::verifyArgs(rect,
BOOST_CURRENT_FUNCTION,
@@ -57,7 +57,7 @@ namespace canvas
virtual void SAL_CALL setData( const ::com::sun::star::uno::Sequence< sal_Int8 >& data,
const ::com::sun::star::rendering::IntegerBitmapLayout& bitmapLayout,
- const ::com::sun::star::geometry::IntegerRectangle2D& rect ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException)
+ const ::com::sun::star::geometry::IntegerRectangle2D& rect ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
{
tools::verifyArgs(bitmapLayout, rect,
BOOST_CURRENT_FUNCTION,
@@ -74,7 +74,7 @@ namespace canvas
virtual void SAL_CALL setPixel( const ::com::sun::star::uno::Sequence< sal_Int8 >& color,
const ::com::sun::star::rendering::IntegerBitmapLayout& bitmapLayout,
- const ::com::sun::star::geometry::IntegerPoint2D& pos ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException)
+ const ::com::sun::star::geometry::IntegerPoint2D& pos ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
{
tools::verifyArgs(bitmapLayout, pos,
BOOST_CURRENT_FUNCTION,
@@ -90,7 +90,7 @@ namespace canvas
}
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getPixel( ::com::sun::star::rendering::IntegerBitmapLayout& bitmapLayout,
- const ::com::sun::star::geometry::IntegerPoint2D& pos ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::rendering::VolatileContentDestroyedException, ::com::sun::star::uno::RuntimeException)
+ const ::com::sun::star::geometry::IntegerPoint2D& pos ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::rendering::VolatileContentDestroyedException, ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
{
tools::verifyArgs(pos,
BOOST_CURRENT_FUNCTION,
@@ -103,7 +103,7 @@ namespace canvas
pos );
}
- virtual ::com::sun::star::rendering::IntegerBitmapLayout SAL_CALL getMemoryLayout( ) throw (::com::sun::star::uno::RuntimeException)
+ virtual ::com::sun::star::rendering::IntegerBitmapLayout SAL_CALL getMemoryLayout( ) throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
{
typename Base::MutexType aGuard( Base::m_aMutex );