diff options
author | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2012-11-30 17:39:51 +0100 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat@free.fr> | 2012-11-30 22:15:38 +0100 |
commit | 316656755caabf4797391c46338c58945908837d (patch) | |
tree | 722d376aaf838cacd372e1f4a0f993274508df70 /svx | |
parent | ebb4150463ef97571d8f4ffc0b8189ff94d5cf1a (diff) |
API CHANGE: Added XStyle::isHidden() and XStyle::setHidden()
Change-Id: I44770c05d51104b45d94145db8263187205daa84
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/table/tabledesign.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svx/source/table/tabledesign.cxx b/svx/source/table/tabledesign.cxx index f719d363b25e..171b5e536b40 100644 --- a/svx/source/table/tabledesign.cxx +++ b/svx/source/table/tabledesign.cxx @@ -84,6 +84,8 @@ public: virtual ::sal_Bool SAL_CALL isInUse() throw (RuntimeException); virtual OUString SAL_CALL getParentStyle() throw (RuntimeException); virtual void SAL_CALL setParentStyle( const OUString& aParentStyle ) throw (NoSuchElementException, RuntimeException); + virtual ::sal_Bool SAL_CALL isHidden() throw (RuntimeException) { return false; }; + virtual void SAL_CALL setHidden( ::sal_Bool ) throw (RuntimeException) { }; // XNamed virtual OUString SAL_CALL getName() throw (RuntimeException); |