1
0
Fork 0

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

release/1.0
alberth 2009-07-20 19:44:28 +00:00
parent 2a5784c53d
commit 03abe67e88
1 changed files with 6 additions and 1 deletions

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 { class PickerWindowBase : public Window {
@ -714,6 +714,11 @@ public:
this->parent = parent; this->parent = parent;
}; };
PickerWindowBase(Window *parent) : Window()
{
this->parent = parent;
};
virtual ~PickerWindowBase(); virtual ~PickerWindowBase();
}; };