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

This commit is contained in:
alberth
2009-07-20 19:44:28 +00:00
parent 8af9329010
commit 41671a441d

View File

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