summaryrefslogtreecommitdiff
path: root/chart2/source/controller/main/UndoCommandDispatch.hxx
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2010-11-09 21:37:01 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2010-11-09 21:37:01 +0100
commit587dfc9e8a00e8b97d5460e4e1d7c48de91b7425 (patch)
tree367b890166129337879f3b8c90c6560d32fd0552 /chart2/source/controller/main/UndoCommandDispatch.hxx
parent78fed9b8623faca46c3e1ef4dc633d80682d0414 (diff)
undoapi: step 2.0 of the migration of css.chart2.XUndoManager to css.document.XUndoManager: rename css.chart2.XUndoManager to XDocumentActions. Not sure this class will still exist (in either form) after the refactoring is finished.
Diffstat (limited to 'chart2/source/controller/main/UndoCommandDispatch.hxx')
-rw-r--r--chart2/source/controller/main/UndoCommandDispatch.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/main/UndoCommandDispatch.hxx b/chart2/source/controller/main/UndoCommandDispatch.hxx
index 28fb813f63de..3130863dec61 100644
--- a/chart2/source/controller/main/UndoCommandDispatch.hxx
+++ b/chart2/source/controller/main/UndoCommandDispatch.hxx
@@ -30,14 +30,14 @@
#include "CommandDispatch.hxx"
#include <com/sun/star/frame/XModel.hpp>
-#include <com/sun/star/chart2/XUndoManager.hpp>
+#include <com/sun/star/chart2/XDocumentActions.hpp>
namespace chart
{
/** This is a CommandDispatch implementation for Undo and Redo.
- You need to pass an UndoManager to this class that is then used for Undo and
+ You need to pass an DocumentActions to this class that is then used for Undo and
Redo. The changes are applied to the given XModel.
*/
class UndoCommandDispatch : public CommandDispatch
@@ -77,7 +77,7 @@ private:
::com::sun::star::uno::Reference<
::com::sun::star::frame::XModel > m_xModel;
::com::sun::star::uno::Reference<
- ::com::sun::star::chart2::XUndoManager > m_xUndoManager;
+ ::com::sun::star::chart2::XDocumentActions > m_xDocumentActions;
};
} // namespace chart