summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-04-15 11:33:17 -0600
committerJared Adams <jaxad0127@gmail.com>2009-04-15 11:33:17 -0600
commit56c224050f10d976298cef98607aa3b3e56fcc99 (patch)
tree583146b7bc9ba8ae6caa639266445daa344d407c /src
parentfc4a12470adde2502f37f22b86f58560e416f3e4 (diff)
downloadmana-client-56c224050f10d976298cef98607aa3b3e56fcc99.tar.gz
mana-client-56c224050f10d976298cef98607aa3b3e56fcc99.tar.bz2
mana-client-56c224050f10d976298cef98607aa3b3e56fcc99.tar.xz
mana-client-56c224050f10d976298cef98607aa3b3e56fcc99.zip
Rename the whisper tab creation commands
Diffstat (limited to 'src')
-rw-r--r--src/commandhandler.cpp18
-rw-r--r--src/commandhandler.h2
2 files changed, 9 insertions, 11 deletions
diff --git a/src/commandhandler.cpp b/src/commandhandler.cpp
index 9b8c037b..d507048c 100644
--- a/src/commandhandler.cpp
+++ b/src/commandhandler.cpp
@@ -68,9 +68,9 @@ void CommandHandler::handleCommand(const std::string &command, ChatTab *tab)
{
handleMsg(args, tab);
}
- else if (type == "msgtab" || type == "whispertab" || type == "wt")
+ else if (type == "query" || type == "q")
{
- handleMsgTab(args, tab);
+ handleQuery(args, tab);
}
else if (type == "join")
{
@@ -149,9 +149,8 @@ void CommandHandler::handleHelp(const std::string &args, ChatTab *tab)
tab->chatLog(_("/msg > Send a private message to a user"));
tab->chatLog(_("/whisper > Alias of msg"));
tab->chatLog(_("/w > Alias of msg"));
- tab->chatLog(_("/msgtab > Makes a tab for private messages with another user"));
- tab->chatLog(_("/whispertab > Alias of msgtab"));
- tab->chatLog(_("/wt > Alias of msgtab"));
+ tab->chatLog(_("/query > Makes a tab for private messages with another user"));
+ tab->chatLog(_("/q > Alias of query"));
tab->chatLog(_("/close > Close the whisper tab (only works in whisper tabs)"));
#ifdef TMWSERV_SUPPORT
@@ -226,11 +225,10 @@ void CommandHandler::handleHelp(const std::string &args, ChatTab *tab)
tab->chatLog(_("If the <nick> has spaces in it, enclose it in "
"double quotes (\")."));
}
- else if (args == "msgtab" || args == "whispertab" || args == "wt")
+ else if (args == "query" || args == "q")
{
- tab->chatLog(_("Command: /msgtab <nick>"));
- tab->chatLog(_("Command: /whispertab <nick>"));
- tab->chatLog(_("Command: /wtab <nick>"));
+ tab->chatLog(_("Command: /query <nick>"));
+ tab->chatLog(_("Command: /q <nick>"));
tab->chatLog(_("This command tries to make a tab for whispers between"
"you and <nick>."));
}
@@ -371,7 +369,7 @@ void CommandHandler::handleMsg(const std::string &args, ChatTab *tab)
tab->chatLog(_("Cannont send empty whispers!"), BY_SERVER);
}
-void CommandHandler::handleMsgTab(const std::string &args, ChatTab *tab) {
+void CommandHandler::handleQuery(const std::string &args, ChatTab *tab) {
if (chatWindow->addWhisperTab(args))
return;
diff --git a/src/commandhandler.h b/src/commandhandler.h
index 458c82c0..cc14060b 100644
--- a/src/commandhandler.h
+++ b/src/commandhandler.h
@@ -78,7 +78,7 @@ class CommandHandler
/**
* Handle a msg tab request.
*/
- void handleMsgTab(const std::string &args, ChatTab *tab);
+ void handleQuery(const std::string &args, ChatTab *tab);
/**
* Handle a join command.