summaryrefslogtreecommitdiff
path: root/src/gui/popups/popupmenu.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-12 18:19:11 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-12 18:19:11 +0300
commitabce183c65e7f6966d3778f4da6d627ea9cdf619 (patch)
treed83b4d1b458c6b68b259cfdd2975ea4577d71a59 /src/gui/popups/popupmenu.cpp
parenta1e54a22abd85e1913a25ef63c947210c2dd8ddc (diff)
downloadplus-abce183c65e7f6966d3778f4da6d627ea9cdf619.tar.gz
plus-abce183c65e7f6966d3778f4da6d627ea9cdf619.tar.bz2
plus-abce183c65e7f6966d3778f4da6d627ea9cdf619.tar.xz
plus-abce183c65e7f6966d3778f4da6d627ea9cdf619.zip
Remove "chat" popup menu handler.
Diffstat (limited to 'src/gui/popups/popupmenu.cpp')
-rw-r--r--src/gui/popups/popupmenu.cpp46
1 files changed, 5 insertions, 41 deletions
diff --git a/src/gui/popups/popupmenu.cpp b/src/gui/popups/popupmenu.cpp
index 59ed14cba..92229bf75 100644
--- a/src/gui/popups/popupmenu.cpp
+++ b/src/gui/popups/popupmenu.cpp
@@ -578,7 +578,7 @@ void PopupMenu::showPopup(const int x, const int y,
addProtection();
// TRANSLATORS: popup menu item
// TRANSLATORS: add item name to chat
- mBrowserBox->addRow("chat", _("Add to chat"));
+ mBrowserBox->addRow("/addchat 'FLOORID'", _("Add to chat"));
mBrowserBox->addRow("##3---");
// TRANSLATORS: popup menu item
// TRANSLATORS: close menu
@@ -981,43 +981,7 @@ void PopupMenu::handleLink(const std::string &link,
if (actorManager)
being = actorManager->findBeing(mBeingId);
- if (link == "chat")
- {
- if (chatWindow)
- {
- if (mItem)
- {
- if (serverFeatures->haveItemColors())
- {
- chatWindow->addItemText(mItem->getInfo().getName(
- mItem->getColor()));
- }
- else
- {
- chatWindow->addItemText(mItem->getInfo().getName());
- }
- }
- else if (mFloorItemId && actorManager)
- {
- const FloorItem *const item = actorManager->findItem(
- mFloorItemId);
-
- if (item)
- {
- if (serverFeatures->haveItemColors())
- {
- chatWindow->addItemText(item->getInfo().getName(
- item->getColor()));
- }
- else
- {
- chatWindow->addItemText(item->getInfo().getName());
- }
- }
- }
- }
- }
- else if (link == "whisper" && !mNick.empty())
+ if (link == "whisper" && !mNick.empty())
{
if (chatWindow)
{
@@ -1996,7 +1960,7 @@ void PopupMenu::showPopup(Window *const parent, const int x, const int y,
}
// TRANSLATORS: popup menu item
// TRANSLATORS: add item name to chat
- mBrowserBox->addRow("chat", _("Add to chat"));
+ mBrowserBox->addRow("/addchat 'ITEMID'", _("Add to chat"));
mBrowserBox->addRow("##3---");
// TRANSLATORS: popup menu item
// TRANSLATORS: close menu
@@ -2072,7 +2036,7 @@ void PopupMenu::showItemPopup(const int x, const int y, Item *const item)
}
// TRANSLATORS: popup menu item
// TRANSLATORS: add item name to chat
- mBrowserBox->addRow("chat", _("Add to chat"));
+ mBrowserBox->addRow("/addchat 'ITEMID'", _("Add to chat"));
if (config.getBoolValue("enablePickupFilter"))
{
@@ -2114,7 +2078,7 @@ void PopupMenu::showDropPopup(const int x, const int y, Item *const item)
addProtection();
// TRANSLATORS: popup menu item
// TRANSLATORS: add item name to chat
- mBrowserBox->addRow("chat", _("Add to chat"));
+ mBrowserBox->addRow("/addchat 'ITEMID'", _("Add to chat"));
if (config.getBoolValue("enablePickupFilter"))
{
mNick = item->getName();