diff options
| author | Ted Gould <ted@gould.cx> | 2007-09-01 04:33:48 +0000 |
|---|---|---|
| committer | gouldtj <gouldtj@users.sourceforge.net> | 2007-09-01 04:33:48 +0000 |
| commit | 26246a2cd104f3548b32a6398d92154b28e08d23 (patch) | |
| tree | ed0b3cf0dae6da2adc854d151fc728d9b33b4fb7 /src/extension/execution-env.h | |
| parent | (bzr r3641) (diff) | |
| download | inkscape-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.h | 3 |
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); |
