# HG changeset patch # User alberth # Date 2009-07-20 19:44:28 # Node ID 183925908279db3e057b2fba7b459251c11b3c56 # Parent 7878803fb7e238acd0354ec8947ea35dc2ddc26c (svn r16892) -Codechange: Add support for nested widget tree windows to PickerWindowBase. diff --git a/src/window_gui.h b/src/window_gui.h --- a/src/window_gui.h +++ b/src/window_gui.h @@ -704,7 +704,7 @@ public: }; /** - * Data structure for a window opened from a toolbar + * Base class for windows opened from a toolbar. */ class PickerWindowBase : public Window { @@ -714,6 +714,11 @@ public: this->parent = parent; }; + PickerWindowBase(Window *parent) : Window() + { + this->parent = parent; + }; + virtual ~PickerWindowBase(); };