diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-30 17:45:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-30 17:45:27 +0300 |
commit | aadf40739c45c3396ace5766dd9c60db0c3b1ccc (patch) | |
tree | a6d2ca5fb86849ae18586b728bfcd9e716f5635f /src/gui/popups | |
parent | 2a33b736dc93251bf7a72364c5f818142362a3ce (diff) | |
download | plus-aadf40739c45c3396ace5766dd9c60db0c3b1ccc.tar.gz plus-aadf40739c45c3396ace5766dd9c60db0c3b1ccc.tar.bz2 plus-aadf40739c45c3396ace5766dd9c60db0c3b1ccc.tar.xz plus-aadf40739c45c3396ace5766dd9c60db0c3b1ccc.zip |
Move relation enum into separate file.
Diffstat (limited to 'src/gui/popups')
-rw-r--r-- | src/gui/popups/popupmenu.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp index 6c348a8e5..37c8e0d78 100644 --- a/src/gui/popups/popupmenu.cpp +++ b/src/gui/popups/popupmenu.cpp @@ -2264,18 +2264,18 @@ void PopupMenu::addPlayerRelation(const std::string &name) { switch (player_relations.getRelation(name)) { - case PlayerRelation::NEUTRAL: + case Relation::NEUTRAL: // TRANSLATORS: popup menu item // TRANSLATORS: add player to friends list mBrowserBox->addRow("/friend 'NAME'", _("Be friend")); addNormalRelations(); break; - case PlayerRelation::FRIEND: + case Relation::FRIEND: addNormalRelations(); break; - case PlayerRelation::BLACKLISTED: + case Relation::BLACKLISTED: // TRANSLATORS: popup menu item // TRANSLATORS: remove player from ignore list mBrowserBox->addRow("/unignore 'NAME'", _("Unignore")); @@ -2293,7 +2293,7 @@ void PopupMenu::addPlayerRelation(const std::string &name) mBrowserBox->addRow("/erase 'NAME'", _("Erase")); break; - case PlayerRelation::DISREGARDED: + case Relation::DISREGARDED: // TRANSLATORS: popup menu item // TRANSLATORS: remove player from ignore list mBrowserBox->addRow("/unignore 'NAME'", _("Unignore")); @@ -2305,7 +2305,7 @@ void PopupMenu::addPlayerRelation(const std::string &name) mBrowserBox->addRow("/erase 'NAME'", _("Erase")); break; - case PlayerRelation::IGNORED: + case Relation::IGNORED: // TRANSLATORS: popup menu item // TRANSLATORS: remove player from ignore list mBrowserBox->addRow("/unignore 'NAME'", _("Unignore")); @@ -2314,7 +2314,7 @@ void PopupMenu::addPlayerRelation(const std::string &name) mBrowserBox->addRow("/erase 'NAME'", _("Erase")); break; - case PlayerRelation::ENEMY2: + case Relation::ENEMY2: // TRANSLATORS: popup menu item // TRANSLATORS: remove player from ignore list mBrowserBox->addRow("/unignore 'NAME'", _("Unignore")); @@ -2332,7 +2332,7 @@ void PopupMenu::addPlayerRelation(const std::string &name) mBrowserBox->addRow("/erase 'NAME'", _("Erase")); break; - case PlayerRelation::ERASED: + case Relation::ERASED: // TRANSLATORS: popup menu item // TRANSLATORS: remove player from ignore list mBrowserBox->addRow("/unignore 'NAME'", _("Unignore")); |