Applied Floessie's changes to prevent mutex lock issues, PR #3318 issue #1791

This commit is contained in:
Beep6581
2016-06-03 14:00:26 +02:00
parent 9fccdd6ca5
commit 21b9b15e45
3 changed files with 27 additions and 9 deletions

View File

@@ -32,11 +32,12 @@ protected:
Gtk::CheckButton* fill;
bool lastFill;
sigc::connection fillConn;
ToolParamBlock* packBox;
ToolParamBlock* packBox;
public:
LensGeometry ();
~LensGeometry ();
Gtk::Box* getPackBox ()
{
@@ -54,6 +55,10 @@ public:
rlistener = l;
}
void disableAutoFillIfActive ();
private:
static int doDisableAutoFillIfActive (void* data);
};
#endif