diff options
Diffstat (limited to 'src/commands.cpp')
-rw-r--r-- | src/commands.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index cef6939d2..1d273c90a 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -251,32 +251,6 @@ static void outStringNormal(ChatTab *const tab, } } -impHandler0(ipcToggle) -{ - if (ipc) - { - IPC::stop(); - if (!ipc) - debugChatTab->chatLog("IPC service stopped."); - else - debugChatTab->chatLog("Unable to stop IPC service."); - } - else - { - IPC::start(); - if (ipc) - { - debugChatTab->chatLog(strprintf("IPC service available on port %d", - ipc->getPort())); - } - else - { - debugChatTab->chatLog("Unable to start IPC service"); - } - } - return true; -} - impHandler(where) { std::ostringstream where; |