summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/document
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2011-03-17 12:50:52 +0100
committerKai Sommerfeld <kso@openoffice.org>2011-03-17 12:50:52 +0100
commit0461d179dddc2caab6315e6f7ec7bb3804dd017a (patch)
tree223d7cc8c3f0388f9931ea5f97521b9dfc1d785d /offapi/com/sun/star/document
parent0f79c68194206864c993cd0fb01a485d2db2664f (diff)
#i117329# - Publishing of UNO types,third wave.
Diffstat (limited to 'offapi/com/sun/star/document')
-rw-r--r--offapi/com/sun/star/document/DocumentEvent.idl2
-rwxr-xr-xoffapi/com/sun/star/document/EmptyUndoStackException.idl2
-rwxr-xr-xoffapi/com/sun/star/document/UndoContextNotClosedException.idl2
-rwxr-xr-xoffapi/com/sun/star/document/UndoFailedException.idl2
-rwxr-xr-xoffapi/com/sun/star/document/UndoManagerEvent.idl2
-rw-r--r--offapi/com/sun/star/document/XDocumentEventBroadcaster.idl4
-rw-r--r--offapi/com/sun/star/document/XDocumentEventListener.idl2
-rwxr-xr-xoffapi/com/sun/star/document/XUndoAction.idl2
-rwxr-xr-xoffapi/com/sun/star/document/XUndoManager.idl6
-rwxr-xr-xoffapi/com/sun/star/document/XUndoManagerListener.idl2
-rwxr-xr-xoffapi/com/sun/star/document/XUndoManagerSupplier.idl4
11 files changed, 15 insertions, 15 deletions
diff --git a/offapi/com/sun/star/document/DocumentEvent.idl b/offapi/com/sun/star/document/DocumentEvent.idl
index caa717a8217a..bd22f6fef522 100644
--- a/offapi/com/sun/star/document/DocumentEvent.idl
+++ b/offapi/com/sun/star/document/DocumentEvent.idl
@@ -51,7 +51,7 @@ module com { module sun { module star { module document {
@see XDocumentEventBroadcaster
@since OOo 3.1
*/
-struct DocumentEvent : ::com::sun::star::lang::EventObject
+published struct DocumentEvent : ::com::sun::star::lang::EventObject
{
/** specifies the name of the event.
diff --git a/offapi/com/sun/star/document/EmptyUndoStackException.idl b/offapi/com/sun/star/document/EmptyUndoStackException.idl
index e003d6af71b9..476a82bbe705 100755
--- a/offapi/com/sun/star/document/EmptyUndoStackException.idl
+++ b/offapi/com/sun/star/document/EmptyUndoStackException.idl
@@ -38,7 +38,7 @@ module com { module sun { module star { module document {
/** is raised when an operation is attemption at an XUndoManager which requires a non-empty stack
of undo actions, and this requirement is not fullfilled.
*/
-exception EmptyUndoStackException : ::com::sun::star::util::InvalidStateException
+published exception EmptyUndoStackException : ::com::sun::star::util::InvalidStateException
{
};
diff --git a/offapi/com/sun/star/document/UndoContextNotClosedException.idl b/offapi/com/sun/star/document/UndoContextNotClosedException.idl
index 4f7d746bad1a..81eeca83c7ac 100755
--- a/offapi/com/sun/star/document/UndoContextNotClosedException.idl
+++ b/offapi/com/sun/star/document/UndoContextNotClosedException.idl
@@ -38,7 +38,7 @@ module com { module sun { module star { module document {
/** is thrown when an operation is attempted at an <type>XUndoManager</type> which requires all undo
contexts to be closed, but this requirement is not fullfilled.
*/
-exception UndoContextNotClosedException : ::com::sun::star::util::InvalidStateException
+published exception UndoContextNotClosedException : ::com::sun::star::util::InvalidStateException
{
};
diff --git a/offapi/com/sun/star/document/UndoFailedException.idl b/offapi/com/sun/star/document/UndoFailedException.idl
index 4489ac5a0e0d..65b23148ad37 100755
--- a/offapi/com/sun/star/document/UndoFailedException.idl
+++ b/offapi/com/sun/star/document/UndoFailedException.idl
@@ -40,7 +40,7 @@ module com { module sun { module star { module document {
@see XUndoAction::undo
@see XUndoManager::undo
*/
-exception UndoFailedException : ::com::sun::star::uno::Exception
+published exception UndoFailedException : ::com::sun::star::uno::Exception
{
/** describes the reason why the operation failed. Usually, this member will carry an exception.
*/
diff --git a/offapi/com/sun/star/document/UndoManagerEvent.idl b/offapi/com/sun/star/document/UndoManagerEvent.idl
index e587669e4fbd..163b9c6dd33d 100755
--- a/offapi/com/sun/star/document/UndoManagerEvent.idl
+++ b/offapi/com/sun/star/document/UndoManagerEvent.idl
@@ -41,7 +41,7 @@ module com { module sun { module star { module document {
@see XUndoManagerListener
@see XUndoAction
*/
-struct UndoManagerEvent : ::com::sun::star::lang::EventObject
+published struct UndoManagerEvent : ::com::sun::star::lang::EventObject
{
/** the title of the undo action which is described by the event
@see XUndoAction::Title
diff --git a/offapi/com/sun/star/document/XDocumentEventBroadcaster.idl b/offapi/com/sun/star/document/XDocumentEventBroadcaster.idl
index bd7bbf52722c..7274083fcf1e 100644
--- a/offapi/com/sun/star/document/XDocumentEventBroadcaster.idl
+++ b/offapi/com/sun/star/document/XDocumentEventBroadcaster.idl
@@ -47,7 +47,7 @@
module com { module sun { module star { module document {
-interface XDocumentEventListener;
+published interface XDocumentEventListener;
//=============================================================================
@@ -60,7 +60,7 @@ interface XDocumentEventListener;
@see DocumentEvent
@since OOo 3.1
*/
-interface XDocumentEventBroadcaster
+published interface XDocumentEventBroadcaster
{
/** registers a listener which is notified about document events
diff --git a/offapi/com/sun/star/document/XDocumentEventListener.idl b/offapi/com/sun/star/document/XDocumentEventListener.idl
index 2fa8e1583f1a..94548e52b578 100644
--- a/offapi/com/sun/star/document/XDocumentEventListener.idl
+++ b/offapi/com/sun/star/document/XDocumentEventListener.idl
@@ -49,7 +49,7 @@ module com { module sun { module star { module document {
@see XDocumentEventBroadcaster
@since OOo 3.1
*/
-interface XDocumentEventListener : ::com::sun::star::lang::XEventListener
+published interface XDocumentEventListener : ::com::sun::star::lang::XEventListener
{
/** is called whenever a document event occured
*/
diff --git a/offapi/com/sun/star/document/XUndoAction.idl b/offapi/com/sun/star/document/XUndoAction.idl
index b47550a3f52f..e65354013499 100755
--- a/offapi/com/sun/star/document/XUndoAction.idl
+++ b/offapi/com/sun/star/document/XUndoAction.idl
@@ -38,7 +38,7 @@ module com { module sun { module star { module document {
/** represents a single (undoable) action on a document
*/
-interface XUndoAction
+published interface XUndoAction
{
/** reverts the action represented by the instance
diff --git a/offapi/com/sun/star/document/XUndoManager.idl b/offapi/com/sun/star/document/XUndoManager.idl
index be43ca899b94..74aa4de0cf70 100755
--- a/offapi/com/sun/star/document/XUndoManager.idl
+++ b/offapi/com/sun/star/document/XUndoManager.idl
@@ -40,8 +40,8 @@
module com { module sun { module star { module document {
-interface XUndoAction;
-interface XUndoManagerListener;
+published interface XUndoAction;
+published interface XUndoManagerListener;
//==================================================================================================================
@@ -76,7 +76,7 @@ interface XUndoManagerListener;
<member>XLockable::unlock</member> methods. When it is locked, then every attempt to add an undo action, or to
enter or leave an Undo context, will be silently ignored.</p>
*/
-interface XUndoManager
+published interface XUndoManager
{
/** allows <a href="#locking">locking</a> the undo manager.
*/
diff --git a/offapi/com/sun/star/document/XUndoManagerListener.idl b/offapi/com/sun/star/document/XUndoManagerListener.idl
index 783e8e7014d8..045e74761794 100755
--- a/offapi/com/sun/star/document/XUndoManagerListener.idl
+++ b/offapi/com/sun/star/document/XUndoManagerListener.idl
@@ -40,7 +40,7 @@ module com { module sun { module star { module document {
@see XUndoManager
*/
-interface XUndoManagerListener : ::com::sun::star::lang::XEventListener
+published interface XUndoManagerListener : ::com::sun::star::lang::XEventListener
{
/** is called when an undo action is added to the undo stack.
diff --git a/offapi/com/sun/star/document/XUndoManagerSupplier.idl b/offapi/com/sun/star/document/XUndoManagerSupplier.idl
index 88a082259413..211dd151ecad 100755
--- a/offapi/com/sun/star/document/XUndoManagerSupplier.idl
+++ b/offapi/com/sun/star/document/XUndoManagerSupplier.idl
@@ -33,13 +33,13 @@
module com { module sun { module star { module document {
-interface XUndoManager;
+published interface XUndoManager;
//==================================================================================================================
/** provides access to an XUndoManager.
*/
-interface XUndoManagerSupplier
+published interface XUndoManagerSupplier
{
/** returns the Undo manager associated with the component.
*/