summaryrefslogtreecommitdiff
path: root/sd/source/core
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/core')
-rw-r--r--sd/source/core/stlsheet.cxx16
1 files changed, 16 insertions, 0 deletions
diff --git a/sd/source/core/stlsheet.cxx b/sd/source/core/stlsheet.cxx
index ef25721d52aa..13d1a5e2738d 100644
--- a/sd/source/core/stlsheet.cxx
+++ b/sd/source/core/stlsheet.cxx
@@ -1024,6 +1024,22 @@ void SAL_CALL SdStyleSheet::setParentStyle( const OUString& rParentName ) throw
}
}
+sal_Bool SAL_CALL SdStyleSheet::isHidden() throw(RuntimeException)
+{
+ SolarMutexGuard aGuard;
+ throwIfDisposed();
+
+ return IsHidden();
+}
+
+void SAL_CALL SdStyleSheet::setHidden( sal_Bool bHidden ) throw(RuntimeException)
+{
+ SolarMutexGuard aGuard;
+ throwIfDisposed();
+
+ return SetHidden( bHidden );
+}
+
// --------------------------------------------------------------------
// XPropertySet
// --------------------------------------------------------------------