mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-17 13:01:42 +00:00
Changed: #85 Compilation with STLport + EOL
This commit is contained in:
parent
986edb216f
commit
6196077160
1 changed files with 426 additions and 426 deletions
|
@ -190,12 +190,12 @@ void PropertyEditorWidget::updateSelection(Node *node)
|
||||||
|
|
||||||
void PropertyEditorWidget::propertyChanged(QtProperty *property)
|
void PropertyEditorWidget::propertyChanged(QtProperty *property)
|
||||||
{
|
{
|
||||||
nlinfo(QString("property %1 changed").arg(property->propertyName()).toStdString().c_str());
|
nlinfo(QString("property %1 changed").arg(property->propertyName()).toUtf8().constData());
|
||||||
}
|
}
|
||||||
|
|
||||||
void PropertyEditorWidget::resetProperty(QtProperty *property)
|
void PropertyEditorWidget::resetProperty(QtProperty *property)
|
||||||
{
|
{
|
||||||
nlinfo(QString("property %1 reset").arg(property->propertyName()).toStdString().c_str());
|
nlinfo(QString("property %1 reset").arg(property->propertyName()).toUtf8().constData());
|
||||||
}
|
}
|
||||||
|
|
||||||
QtProperty *PropertyEditorWidget::addBoolProperty(const NLLIGO::IProperty *property,
|
QtProperty *PropertyEditorWidget::addBoolProperty(const NLLIGO::IProperty *property,
|
||||||
|
@ -248,7 +248,7 @@ QtProperty *PropertyEditorWidget::addConstStringProperty(const NLLIGO::IProperty
|
||||||
// Find index of current value
|
// Find index of current value
|
||||||
for (int i = 0; i < listEnums.size(); i++)
|
for (int i = 0; i < listEnums.size(); i++)
|
||||||
{
|
{
|
||||||
if (value == listEnums[i].toStdString())
|
if (value == std::string(listEnums[i].toUtf8().constData()))
|
||||||
{
|
{
|
||||||
m_enumManager->setValue(prop, i);
|
m_enumManager->setValue(prop, i);
|
||||||
break;
|
break;
|
||||||
|
@ -346,7 +346,7 @@ QtProperty *PropertyEditorWidget::addConstStringArrayProperty(const NLLIGO::IPro
|
||||||
// Find index of current value
|
// Find index of current value
|
||||||
//for (int i = 0; i < listEnums.size(); i++)
|
//for (int i = 0; i < listEnums.size(); i++)
|
||||||
//{
|
//{
|
||||||
// if (value == listEnums[i].toStdString())
|
// if (value == std::string(listEnums[i].toUtf8().constData()))
|
||||||
// {
|
// {
|
||||||
// m_enumManager->setValue(prop, i);
|
// m_enumManager->setValue(prop, i);
|
||||||
// break;
|
// break;
|
||||||
|
|
Loading…
Reference in a new issue