From 46d35da5ec9fb59d2bf61fc39d36ee48b51509ba Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 4 Apr 2011 19:44:48 +0300 Subject: Replcae find to compare if need. --- src/gui/popupmenu.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/gui/popupmenu.cpp') diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index 8e668c1ed..6c43fdfa1 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -1127,7 +1127,7 @@ void PopupMenu::handleLink(const std::string &link, showChangePos(getX(), getY()); return; } - else if (!link.find("guild-pos-")) + else if (!link.compare(0, 10, "guild-pos-")) { if (player_node) { @@ -1140,7 +1140,7 @@ void PopupMenu::handleLink(const std::string &link, } } } - else if (!link.find("player_")) + else if (!link.compare(0, 7, "player_")) { mBeingId = atoi(link.substr(7).c_str()); Being *being = actorSpriteManager->findBeing(mBeingId); @@ -1150,22 +1150,22 @@ void PopupMenu::handleLink(const std::string &link, return; } } - else if (!link.find("hide button_")) + else if (!link.compare(0, 12, "hide button_")) { if (windowMenu) windowMenu->showButton(link.substr(12), false); } - else if (!link.find("show button_")) + else if (!link.compare(0, 12, "show button_")) { if (windowMenu) windowMenu->showButton(link.substr(12), true); } - else if (!link.find("hide bar_")) + else if (!link.compare(0, 9, "hide bar_")) { if (miniStatusWindow) miniStatusWindow->showBar(link.substr(9), false); } - else if (!link.find("show bar_")) + else if (!link.compare(0, 9, "show bar_")) { if (miniStatusWindow) miniStatusWindow->showBar(link.substr(9), true); -- cgit v1.2.3-60-g2f50