Fixed crash when closing image panel that is still processing

see issue 671
This commit is contained in:
Oliver Duis
2011-06-11 10:28:00 +02:00
parent 73347b5f87
commit 72923977dd
3 changed files with 33 additions and 3 deletions

View File

@@ -118,6 +118,9 @@ class EditorPanel : public Gtk::VBox,
sigc::connection ShowHideSidePanelsconn;
bool isProcessing;
public:
EditorPanel (FilePanel* filePanel = NULL);
@@ -173,6 +176,8 @@ class EditorPanel : public Gtk::VBox,
Glib::ustring getFileName ();
bool handleShortcutKey (GdkEventKey* event);
bool getIsProcessing() const { return isProcessing; }
Gtk::Paned *catalogPane;
};