diff options
author | Joachim Lingner <jl@openoffice.org> | 2010-02-11 11:24:50 +0100 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2010-02-11 11:24:50 +0100 |
commit | e7c9b11009a200520de9180741032e1183fb2ec6 (patch) | |
tree | 83a9b563987b37236b2bad44cdc6c05d9ca45a40 | |
parent | 8c87a43bb1735c0807ea9d94a92930a387c01632 (diff) |
native0: #i100282# Support unopkg --suppress-license option
-rw-r--r-- | offapi/com/sun/star/deployment/LicenseException.idl | 8 | ||||
-rw-r--r-- | offapi/com/sun/star/deployment/LicenseIndividualAgreementException.idl | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/offapi/com/sun/star/deployment/LicenseException.idl b/offapi/com/sun/star/deployment/LicenseException.idl index ac4396f6db43..4d3996da191b 100644 --- a/offapi/com/sun/star/deployment/LicenseException.idl +++ b/offapi/com/sun/star/deployment/LicenseException.idl @@ -47,6 +47,14 @@ exception LicenseException : com::sun::star::uno::Exception /** contains the text of the license. */ string Text; + + /** indicates if the user can prevent to show the license + + Represents the attribute value + /description/registration/simple-license/@suppress-if-required + from the description.xml + */ + boolean SuppressIfRequired; }; }; }; }; }; diff --git a/offapi/com/sun/star/deployment/LicenseIndividualAgreementException.idl b/offapi/com/sun/star/deployment/LicenseIndividualAgreementException.idl index 67b82664c03d..4239d14f075f 100644 --- a/offapi/com/sun/star/deployment/LicenseIndividualAgreementException.idl +++ b/offapi/com/sun/star/deployment/LicenseIndividualAgreementException.idl @@ -45,6 +45,13 @@ exception LicenseIndividualAgreementException : com::sun::star::uno::Exception Contains the file name only. */ string ExtensionName; + /** indicates if the user can prevent to show the license + + Represents the attribute value + /description/registration/simple-license/@suppress-if-required + from the description.xml + */ + boolean SuppressIfRequired; }; }; }; }; }; |