mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 07:56:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			427 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			427 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "textedit.hpp"
 | 
						|
 | 
						|
namespace LuaUi
 | 
						|
{
 | 
						|
    bool LuaTextEdit::setPropertyRaw(std::string_view name, sol::object value)
 | 
						|
    {
 | 
						|
        if (name == "caption")
 | 
						|
        {
 | 
						|
            if (!value.is<std::string>())
 | 
						|
                return false;
 | 
						|
            setCaption(value.as<std::string>());
 | 
						|
        }
 | 
						|
        else
 | 
						|
        {
 | 
						|
            return WidgetExtension::setPropertyRaw(name, value);
 | 
						|
        }
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
}
 |