Qt Editor: Rename EditorInfo to EditorHelp

Fits better with "UsageHelp" and is more precise.
qteditor
Sven Eberhardt 2016-07-24 23:10:43 -04:00
parent 3a6a7626c1
commit ee88a36f73
3 changed files with 4 additions and 4 deletions

View File

@ -1679,7 +1679,7 @@ bool C4ConsoleQtPropListModel::AddPropertyGroup(C4PropList *add_proplist, int32_
{
prop->key = published_prop->GetPropertyStr(P_Key);
prop->display_name = published_prop->GetPropertyStr(P_Name);
prop->help_text = published_prop->GetPropertyStr(P_EditorInfo);
prop->help_text = published_prop->GetPropertyStr(P_EditorHelp);
prop->delegate_info.SetPropList(published_prop);
}
if (!prop->key) properties.props[i].key = prop_id;
@ -2168,7 +2168,7 @@ const char *C4ConsoleQtPropListModel::GetTargetPathHelp() const
// Help text in EditorInfo prop. Fall back to description.
C4PropList *info_proplist = this->info_proplist.getPropList();
if (!info_proplist) return nullptr;
C4String *desc = info_proplist->GetPropertyStr(P_EditorInfo);
C4String *desc = info_proplist->GetPropertyStr(P_EditorHelp);
if (!desc) desc = info_proplist->GetPropertyStr(P_Description);
if (!desc) return nullptr;
return desc->GetCStr();

View File

@ -285,7 +285,7 @@ C4StringTable::C4StringTable()
P[P_Select] = "Select";
P[P_DescendPath] = "DescendPath";
P[P_EmptyName] = "EmptyName";
P[P_EditorInfo] = "EditorInfo";
P[P_EditorHelp] = "EditorHelp";
P[P_Description] = "Description";
P[DFA_WALK] = "WALK";
P[DFA_FLIGHT] = "FLIGHT";

View File

@ -509,7 +509,7 @@ enum C4PropertyName
P_Select,
P_DescendPath,
P_EmptyName,
P_EditorInfo,
P_EditorHelp,
P_Description,
// Default Action Procedures
DFA_WALK,