(svn r16892) -Codechange: Add support for nested widget tree windows to PickerWindowBase.

pull/155/head
alberth 15 years ago
parent 8af9329010
commit 41671a441d

@ -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();
};

Loading…
Cancel
Save