From 316656755caabf4797391c46338c58945908837d Mon Sep 17 00:00:00 2001 From: Cédric Bosdonnat Date: Fri, 30 Nov 2012 17:39:51 +0100 Subject: API CHANGE: Added XStyle::isHidden() and XStyle::setHidden() Change-Id: I44770c05d51104b45d94145db8263187205daa84 --- reportdesign/source/core/api/ReportDefinition.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'reportdesign') diff --git a/reportdesign/source/core/api/ReportDefinition.cxx b/reportdesign/source/core/api/ReportDefinition.cxx index 2588fbc026a5..ea90e23e5e3a 100644 --- a/reportdesign/source/core/api/ReportDefinition.cxx +++ b/reportdesign/source/core/api/ReportDefinition.cxx @@ -269,6 +269,9 @@ public: ::sal_Bool SAL_CALL isInUse( ) throw (uno::RuntimeException); ::rtl::OUString SAL_CALL getParentStyle( ) throw (uno::RuntimeException); void SAL_CALL setParentStyle( const ::rtl::OUString& aParentStyle ) throw (container::NoSuchElementException, uno::RuntimeException); + ::sal_Bool SAL_CALL isHidden( ) throw (uno::RuntimeException) { return false; } + void SAL_CALL setHidden( ::sal_Bool ) throw (uno::RuntimeException) { }; + // XNamed ::rtl::OUString SAL_CALL getName( ) throw (uno::RuntimeException); void SAL_CALL setName( const ::rtl::OUString& aName ) throw (uno::RuntimeException); -- cgit