summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/util/XProtectable.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/util/XProtectable.idl')
-rw-r--r--offapi/com/sun/star/util/XProtectable.idl6
1 files changed, 0 insertions, 6 deletions
diff --git a/offapi/com/sun/star/util/XProtectable.idl b/offapi/com/sun/star/util/XProtectable.idl
index 906a8855f2cd..06eaa6251df7 100644
--- a/offapi/com/sun/star/util/XProtectable.idl
+++ b/offapi/com/sun/star/util/XProtectable.idl
@@ -24,28 +24,23 @@
#include <com/sun/star/lang/IllegalArgumentException.idl>
-//=============================================================================
module com { module sun { module star { module util {
-//=============================================================================
/** makes it possible to protect objects from modifications.
*/
published interface XProtectable: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** activates the protection.
*/
void protect( [in] string aPassword );
- //-------------------------------------------------------------------------
/** removes the protection.
*/
void unprotect( [in] string aPassword )
raises( com::sun::star::lang::IllegalArgumentException );
- //-------------------------------------------------------------------------
/** @returns
the current state of protection.
*/
@@ -53,7 +48,6 @@ published interface XProtectable: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };