summaryrefslogtreecommitdiffstats
path: root/src/extension/execution-env.h
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2007-09-01 04:33:48 +0000
committergouldtj <gouldtj@users.sourceforge.net>2007-09-01 04:33:48 +0000
commit26246a2cd104f3548b32a6398d92154b28e08d23 (patch)
treeed0b3cf0dae6da2adc854d151fc728d9b33b4fb7 /src/extension/execution-env.h
parent(bzr r3641) (diff)
downloadinkscape-26246a2cd104f3548b32a6398d92154b28e08d23.tar.gz
inkscape-26246a2cd104f3548b32a6398d92154b28e08d23.zip
r16403@tres: ted | 2007-08-29 09:10:45 -0700
Fixed a tricky segmentation fault. Multithreading is hard when you don't have threads :) (bzr r3642)
Diffstat (limited to 'src/extension/execution-env.h')
-rw-r--r--src/extension/execution-env.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/extension/execution-env.h b/src/extension/execution-env.h
index a3938be3d..5758658f3 100644
--- a/src/extension/execution-env.h
+++ b/src/extension/execution-env.h
@@ -32,6 +32,7 @@ private:
bool _canceled;
bool _prefsChanged;
bool _livePreview;
+ bool _selfdelete;
Glib::RefPtr<Glib::MainLoop> _mainloop;
Inkscape::UI::View::View * _doc;
std::list<Glib::ustring> _selected;
@@ -46,7 +47,7 @@ public:
void run (void);
void preferencesChange (void);
void livePreview (bool state = true);
- void shutdown (void);
+ void shutdown (bool del = false);
private:
void createPrefsDialog (Gtk::Widget * controls);