summaryrefslogtreecommitdiff
path: root/src/gui/models/ignorechoiceslistmodel.h
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/ignorechoiceslistmodel.h
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/ignorechoiceslistmodel.h')
-rw-r--r--src/gui/models/ignorechoiceslistmodel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/models/ignorechoiceslistmodel.h b/src/gui/models/ignorechoiceslistmodel.h
index b0010df31..ef537a5c7 100644
--- a/src/gui/models/ignorechoiceslistmodel.h
+++ b/src/gui/models/ignorechoiceslistmodel.h
@@ -45,7 +45,7 @@ class IgnoreChoicesListModel final : public ListModel
int getNumberOfElements() override final
{
- return CAST_S32(player_relations.
+ return CAST_S32(playerRelations.
getPlayerIgnoreStrategies()->size());
}
@@ -54,7 +54,7 @@ class IgnoreChoicesListModel final : public ListModel
if (i >= getNumberOfElements() || i < 0)
return "???";
- return (*player_relations.getPlayerIgnoreStrategies())
+ return (*playerRelations.getPlayerIgnoreStrategies())
[i]->mDescription;
}
};