summaryrefslogtreecommitdiff
path: root/src/gui/models/playertablemodel.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-11 01:00:01 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-11 01:00:01 +0300
commit2f768a34f72560ee8b2934228f548a4909533887 (patch)
tree0849395dea15a851fcec1a6236c29648cb41add7 /src/gui/models/playertablemodel.cpp
parent05edba87ab0dae7ac4480c86655afe59cd1dd3bd (diff)
downloadplus-2f768a34f72560ee8b2934228f548a4909533887.tar.gz
plus-2f768a34f72560ee8b2934228f548a4909533887.tar.bz2
plus-2f768a34f72560ee8b2934228f548a4909533887.tar.xz
plus-2f768a34f72560ee8b2934228f548a4909533887.zip
Rename player_relations into playerRelations.
Diffstat (limited to 'src/gui/models/playertablemodel.cpp')
-rw-r--r--src/gui/models/playertablemodel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/models/playertablemodel.cpp b/src/gui/models/playertablemodel.cpp
index 9c8526e0d..417fafcbc 100644
--- a/src/gui/models/playertablemodel.cpp
+++ b/src/gui/models/playertablemodel.cpp
@@ -95,7 +95,7 @@ void PlayerTableModel::playerRelationsUpdated()
signalBeforeUpdate();
freeWidgets();
- StringVect *const player_names = player_relations.getPlayers();
+ StringVect *const player_names = playerRelations.getPlayers();
delete mPlayers;
mPlayers = player_names;
@@ -109,7 +109,7 @@ void PlayerTableModel::playerRelationsUpdated()
DropDown *const choicebox = new DropDown(this, mListModel);
choicebox->setSelected(CAST_S32(
- player_relations.getRelation(name)));
+ playerRelations.getRelation(name)));
mWidgets.push_back(choicebox);
}
@@ -122,7 +122,7 @@ void PlayerTableModel::updateModelInRow(const int row) const
getElementAt(row, RELATION_CHOICE_COLUMN));
if (choicebox == nullptr)
return;
- player_relations.setRelation(getPlayerAt(row),
+ playerRelations.setRelation(getPlayerAt(row),
static_cast<RelationT>(
choicebox->getSelected()));
}