diff options
Diffstat (limited to 'offapi/com')
-rw-r--r-- | offapi/com/sun/star/style/Style.idl | 4 | ||||
-rw-r--r-- | offapi/com/sun/star/style/XStyle.idl | 9 |
2 files changed, 4 insertions, 9 deletions
diff --git a/offapi/com/sun/star/style/Style.idl b/offapi/com/sun/star/style/Style.idl index 31e7dd71365a..52089e17750b 100644 --- a/offapi/com/sun/star/style/Style.idl +++ b/offapi/com/sun/star/style/Style.idl @@ -135,6 +135,10 @@ published service Style */ [optional, property] sequence< com::sun::star::beans::NamedValue > ParaStyleConditions; + /** Flag indicating whether to hide the style in the UI. + @since LibreOffice 4.0 + */ + [optional, property] boolean Hidden; }; diff --git a/offapi/com/sun/star/style/XStyle.idl b/offapi/com/sun/star/style/XStyle.idl index 4367c5c57303..8ceb036bbc80 100644 --- a/offapi/com/sun/star/style/XStyle.idl +++ b/offapi/com/sun/star/style/XStyle.idl @@ -54,15 +54,6 @@ published interface XStyle: com::sun::star::container::XNamed */ void setParentStyle( [in] string aParentStyle ) raises( com::sun::star::container::NoSuchElementException ); - - - /** tells whether the style is hidden in the UI. - */ - boolean isHidden(); - - /** sets whether a style should be hidden in the UI. - */ - void setHidden( [in] boolean hidden ); }; |