(svn r13230) -Fix [FS#2030](r13171): When closing toolbars, also close their PickerWindows.

This commit is contained in:
frosch
2008-05-24 11:19:30 +00:00
parent 6884f9cb41
commit 8b1e7c8189
5 changed files with 51 additions and 48 deletions

View File

@@ -426,7 +426,10 @@ public:
class PickerWindowBase : public Window {
public:
PickerWindowBase(const WindowDesc *desc) : Window(desc) {}; // nothing special yet, just propagation
PickerWindowBase(const WindowDesc *desc, Window *parent) : Window(desc)
{
this->parent = parent;
};
virtual ~PickerWindowBase();
};