summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/document
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-11-02 13:19:49 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-11-02 13:19:49 +0100
commitcaeafe3596ab5ba76fe3cdcfb2e84fb4108752ee (patch)
treea0a31ab127ebf965b46513a00c86c342a0ebc4b2 /offapi/com/sun/star/document
parentff778a6b97c5b688537c543aad868b694ff264f9 (diff)
undoapi: allow retrieving the count/comments of Undo/Redo actions both on the current and the top level
Diffstat (limited to 'offapi/com/sun/star/document')
-rwxr-xr-xoffapi/com/sun/star/document/XUndoManager.idl6
-rwxr-xr-xoffapi/com/sun/star/document/XUndoManagerListener.idl2
2 files changed, 4 insertions, 4 deletions
diff --git a/offapi/com/sun/star/document/XUndoManager.idl b/offapi/com/sun/star/document/XUndoManager.idl
index d1fe4b2b65a0..9d8b3e11974f 100755
--- a/offapi/com/sun/star/document/XUndoManager.idl
+++ b/offapi/com/sun/star/document/XUndoManager.idl
@@ -130,7 +130,7 @@ interface XUndoManager
if the undo stack is currently empty, in which case it is impossible to push a hidden undo action onto
it.
- @see emterUndoContext
+ @see enterUndoContext
@see leaveUndoContext
*/
void enterHiddenUndoContext()
@@ -225,7 +225,7 @@ interface XUndoManager
/** determines whether <member>undo</member> can reasonably be expected to succeed.
@return
- <FALSE/> if and only if the undo stack is currently, empty, or there is an open and not-yet-closed
+ <FALSE/> if and only if the undo stack is currently empty, or there is an open and not-yet-closed
undo context.
*/
boolean isUndoPossible();
@@ -233,7 +233,7 @@ interface XUndoManager
/** determines whether <member>redo</member> can reasonably be expected to succeed.
@return
- <FALSE/> if and only if the redo stack is currently, empty, or there is an open and not-yet-closed
+ <FALSE/> if and only if the redo stack is currently empty, or there is an open and not-yet-closed
undo context.
*/
boolean isRedoPossible();
diff --git a/offapi/com/sun/star/document/XUndoManagerListener.idl b/offapi/com/sun/star/document/XUndoManagerListener.idl
index 64c8c49db501..783e8e7014d8 100755
--- a/offapi/com/sun/star/document/XUndoManagerListener.idl
+++ b/offapi/com/sun/star/document/XUndoManagerListener.idl
@@ -126,7 +126,7 @@ interface XUndoManagerListener : ::com::sun::star::lang::XEventListener
/** is called when an Undo context has been left, but no actions have been added within this context.
<p>In such a case, the context which has just been left will not contribute to the undo stack, but instead
- be silently removed.</p>
+ be silently removed. Consequently, the <member>UndoManagerEvent::UndoActionTitle</member> is empty.</p>
@see XUndoManager::leaveUndoContext
@see leftContext