diff options
| author | David Yip <yipdw@alumni.rose-hulman.edu> | 2006-06-29 21:39:57 +0000 |
|---|---|---|
| committer | dwyip <dwyip@users.sourceforge.net> | 2006-06-29 21:39:57 +0000 |
| commit | b8e35cf1049f1a36dc0647aeaa31d86fee9c6025 (patch) | |
| tree | c8ef19e7c29a68ac620f7dfe772c58b558caea20 /src/undo-stack-observer.h | |
| parent | added files from Gustav Broberg's patch (diff) | |
| download | inkscape-b8e35cf1049f1a36dc0647aeaa31d86fee9c6025.tar.gz inkscape-b8e35cf1049f1a36dc0647aeaa31d86fee9c6025.zip | |
backed out Event -> XML::Event changes
(bzr r1319)
Diffstat (limited to 'src/undo-stack-observer.h')
| -rw-r--r-- | src/undo-stack-observer.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/undo-stack-observer.h b/src/undo-stack-observer.h index f88c63e62..cd17c4675 100644 --- a/src/undo-stack-observer.h +++ b/src/undo-stack-observer.h @@ -16,12 +16,8 @@ namespace Inkscape { -namespace XML { - class Event; -} - /** * Observes changes made to the undo and redo stacks. * @@ -46,21 +42,21 @@ public: * * \param log Pointer to an Event describing the undone event. */ - virtual void notifyUndoEvent(XML::Event* log) = 0; + virtual void notifyUndoEvent(Event* log) = 0; /** * Triggered when the user issues a redo command. * * \param log Pointer to an Event describing the redone event. */ - virtual void notifyRedoEvent(XML::Event* log) = 0; + virtual void notifyRedoEvent(Event* log) = 0; /** * Triggered when a set of transactions is committed to the undo log. * * \param log Pointer to an Event describing the committed events. */ - virtual void notifyUndoCommitEvent(XML::Event* log) = 0; + virtual void notifyUndoCommitEvent(Event* log) = 0; }; } |
