diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-06-30 23:14:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-01 02:08:53 +0300 |
commit | 32014de9008efe051a1a8b05e5e976a4629b34d2 (patch) | |
tree | 694b93739685b8b8462c7f602b8ae693be5e65bf /src/gui/popupmenu.h | |
parent | 5c260f683e26529d7cf02c12c1fff70a7a7e5eb8 (diff) | |
download | mv-32014de9008efe051a1a8b05e5e976a4629b34d2.tar.gz mv-32014de9008efe051a1a8b05e5e976a4629b34d2.tar.bz2 mv-32014de9008efe051a1a8b05e5e976a4629b34d2.tar.xz mv-32014de9008efe051a1a8b05e5e976a4629b34d2.zip |
Replace some lists to vectors.
Diffstat (limited to 'src/gui/popupmenu.h')
-rw-r--r-- | src/gui/popupmenu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/popupmenu.h b/src/gui/popupmenu.h index 50d86ff37..8830bdd00 100644 --- a/src/gui/popupmenu.h +++ b/src/gui/popupmenu.h @@ -102,7 +102,7 @@ class PopupMenu : public Popup, public LinkHandler /** * Shows the beings related popup menu at the specified mouse coords. */ - void showPopup(int x, int y, std::list<Being*> &beings); + void showPopup(int x, int y, std::vector<Being*> &beings); void showPlayerPopup(int x, int y, std::string nick); |