mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 22:56:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			641 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			641 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "exposedwindow.hpp"
 | |
| 
 | |
| namespace MWGui
 | |
| {
 | |
|     MyGUI::VectorWidgetPtr ExposedWindow::getSkinWidgetsByName (const std::string &name)
 | |
|     {
 | |
|         return MyGUI::Widget::getSkinWidgetsByName (name);
 | |
|     }
 | |
| 
 | |
|     MyGUI::Widget* ExposedWindow::getSkinWidget(const std::string & _name, bool _throw)
 | |
|     {
 | |
|         MyGUI::VectorWidgetPtr widgets = getSkinWidgetsByName (_name);
 | |
| 
 | |
|         if (widgets.empty())
 | |
|         {
 | |
|             MYGUI_ASSERT( ! _throw, "widget name '" << _name << "' not found in skin of layout '" << getName() << "'");
 | |
|             return NULL;
 | |
|         }
 | |
|         else
 | |
|         {
 | |
|             return widgets[0];
 | |
|         }
 | |
|     }
 | |
| }
 |