Changeset - r12448:183925908279
[Not reviewed]
master
0 1 0
alberth - 15 years ago 2009-07-20 19:44:28
alberth@openttd.org
(svn r16892) -Codechange: Add support for nested widget tree windows to PickerWindowBase.
1 file changed with 6 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/window_gui.h
Show inline comments
 
@@ -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();
 
};
 

	
0 comments (0 inline, 0 general)