aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/irc
diff options
context:
space:
mode:
authorRenaud Guezennec <renaud.guezennec@softbankrobotics.com>2017-11-28 11:26:09 +0100
committerRenaud Guezennec <renaud.guezennec@softbankrobotics.com>2017-11-28 11:26:09 +0100
commitf0ade121f9cef3b39c41816536f4e400f43dd4af (patch)
treedb484da8c9bf02ecdf86e117def96f555191787b /irc
parent4516fab0081b0db73b7401816a521453ab77ecc6 (diff)
downloadOneRoll-f0ade121f9cef3b39c41816536f4e400f43dd4af.tar.gz
OneRoll-f0ade121f9cef3b39c41816536f4e400f43dd4af.zip
-fix copy of if operator
Compare method was not shared.
Diffstat (limited to 'irc')
-rw-r--r--irc/botircdiceparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/botircdiceparser.cpp b/irc/botircdiceparser.cpp
index 44a3224..f1a61f5 100644
--- a/irc/botircdiceparser.cpp
+++ b/irc/botircdiceparser.cpp
@@ -234,7 +234,7 @@ QString BotIrcDiceParser::startDiceParsing(QString& cmd,bool highlight)
if(m_parser->parseLine(cmd))
{
- m_parser->Start();
+ m_parser->start();
if(!m_parser->getErrorMap().isEmpty())
{
out << "Error" << m_parser->humanReadableError()<< "\n";