ultimatepp/uppsrc/ide/MethodsCtrls.cpp
cxl 264ae6ef62 - Android Builder merged (thanks Klugier!)
git-svn-id: svn://ultimatepp.org/upp/trunk@8636 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-07-06 09:18:38 +00:00

12 lines
182 B
C++

#include "ide.h"
void TextOption::SetData(const Value& data)
{
String s = data;
Set(!(IsNull(s) || s == "0"));
}
Value TextOption::GetData() const
{
return Get() ? "1" : "0";
}