summaryrefslogtreecommitdiff
path: root/src/gui/widgets/whispertab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/whispertab.cpp')
-rw-r--r--src/gui/widgets/whispertab.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/gui/widgets/whispertab.cpp b/src/gui/widgets/whispertab.cpp
index 6079b668c..c22c9d694 100644
--- a/src/gui/widgets/whispertab.cpp
+++ b/src/gui/widgets/whispertab.cpp
@@ -23,7 +23,7 @@
#include "gui/widgets/whispertab.h"
#include "chatlogger.h"
-#include "commandhandler.h"
+#include "commands.h"
#include "localplayer.h"
#include "net/chathandler.h"
@@ -140,13 +140,11 @@ bool WhisperTab::handleCommand(const std::string &type,
}
else if (type == "ignore")
{
- if (commandHandler)
- commandHandler->handleIgnore(mNick, this);
+ Commands::ignore(mNick, this);
}
else if (type == "unignore")
{
- if (commandHandler)
- commandHandler->handleUnignore(mNick, this);
+ Commands::unignore(mNick, this);
}
else
{