mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 12:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			227 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			227 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "textedit.hpp"
 | 
						|
 | 
						|
namespace LuaUi
 | 
						|
{
 | 
						|
    void LuaTextEdit::setProperties(sol::object props)
 | 
						|
    {
 | 
						|
        setCaption(parseProperty(props, "caption", std::string()));
 | 
						|
        WidgetExtension::setProperties(props);
 | 
						|
    }
 | 
						|
}
 |