summaryrefslogtreecommitdiffstats
path: root/src/desktop.cpp
diff options
context:
space:
mode:
authorgustav_b <gustav_b@users.sourceforge.net>2006-10-01 18:57:05 +0000
committergustav_b <gustav_b@users.sourceforge.net>2006-10-01 18:57:05 +0000
commita8c615d56eda3f3e6ee05e9b133151daaeafae72 (patch)
treec32b5f6a6661b332058a1fad5e23d7238188dcf4 /src/desktop.cpp
parentOther tools now also retain there specific statusbar text when pressing alt/s... (diff)
downloadinkscape-a8c615d56eda3f3e6ee05e9b133151daaeafae72.tar.gz
inkscape-a8c615d56eda3f3e6ee05e9b133151daaeafae72.zip
Moved EventLog from SPDocument to SPDesktop to prevent it from being
created when Inkscape is started in non-gui mode. Fixes a critical assertion caused by creation of a Gtk::TreeStore. (bzr r1749)
Diffstat (limited to 'src/desktop.cpp')
-rw-r--r--src/desktop.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/desktop.cpp b/src/desktop.cpp
index 57d89c5bc..722aa81e9 100644
--- a/src/desktop.cpp
+++ b/src/desktop.cpp
@@ -79,6 +79,7 @@
#include "xml/repr.h"
#include "message-context.h"
#include "layer-manager.h"
+#include "event-log.h"
namespace Inkscape { namespace XML { class Node; }}
@@ -287,6 +288,10 @@ SPDesktop::init (SPNamedView *nv, SPCanvas *aCanvas)
/* setup LayerManager */
// (Setting up after the connections are all in place, as it may use some of them)
layer_manager = new Inkscape::LayerManager( this );
+
+ /* setup EventLog */
+ event_log = new Inkscape::EventLog(document);
+ document->addUndoObserver(*event_log);
}