mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-21 18:24:34 +00:00
Update UIControl_MultiList.cpp
This commit is contained in:
@@ -139,7 +139,7 @@ void UIControl_MultiList::AddNewTextInput(UIString label, int id)
|
||||
|
||||
value[1].type = IGGY_DATATYPE_number;
|
||||
value[1].number = id;
|
||||
IggyResult out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_initFunc, 2, value);
|
||||
auto out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_initFunc, 2, value);
|
||||
|
||||
UIControl_List::addElement(UIControl::eTextInput, id);
|
||||
}
|
||||
@@ -166,7 +166,7 @@ void UIControl_MultiList::SetCheckboxValue(int id, bool checked, bool applyImmed
|
||||
value[1].type = IGGY_DATATYPE_boolean;
|
||||
value[1].boolval = checked;
|
||||
|
||||
IggyResult out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_funcSetCheckBox, 2, value);
|
||||
auto out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_funcSetCheckBox, 2, value);
|
||||
/*
|
||||
}
|
||||
else
|
||||
@@ -211,7 +211,7 @@ void UIControl_MultiList::SetSliderValue(int index, int value2, bool applyImmedi
|
||||
value[1].type = IGGY_DATATYPE_number;
|
||||
value[1].number = value2;
|
||||
|
||||
IggyResult out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_funcSetSliderValue, 2, value);
|
||||
auto out = IggyPlayerCallMethodRS(m_parentScene->getMovie(), &result, getIggyValuePath(), m_funcSetSliderValue, 2, value);
|
||||
/*
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user