mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Use the previous naming to keep source compatibility
This commit is contained in:
committed by
Baldur Karlsson
parent
e630515813
commit
789a2a131c
@@ -298,19 +298,19 @@ struct MiniQtInvoker : ObjectForwarder<IMiniQtHelper>
|
||||
return InvokeRetFunction<QWidget *>(&IMiniQtHelper::CreateComboBox, editable, changed);
|
||||
}
|
||||
|
||||
void SetComboBoxOptions(QWidget *combo, const rdcarray<rdcstr> &options)
|
||||
void SetComboOptions(QWidget *combo, const rdcarray<rdcstr> &options)
|
||||
{
|
||||
InvokeVoidFunction(&IMiniQtHelper::SetComboBoxOptions, combo, options);
|
||||
InvokeVoidFunction(&IMiniQtHelper::SetComboOptions, combo, options);
|
||||
}
|
||||
|
||||
size_t GetComboBoxCount(QWidget *combo)
|
||||
size_t GetComboCount(QWidget *combo)
|
||||
{
|
||||
return InvokeRetFunction<size_t>(&IMiniQtHelper::GetComboBoxCount, combo);
|
||||
return InvokeRetFunction<size_t>(&IMiniQtHelper::GetComboCount, combo);
|
||||
}
|
||||
|
||||
void SelectComboBoxOption(QWidget *combo, const rdcstr &option)
|
||||
void SelectComboOption(QWidget *combo, const rdcstr &option)
|
||||
{
|
||||
InvokeVoidFunction(&IMiniQtHelper::SelectComboBoxOption, combo, option);
|
||||
InvokeVoidFunction(&IMiniQtHelper::SelectComboOption, combo, option);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user