diff options
| author | 2017-11-28 11:26:09 +0100 | |
|---|---|---|
| committer | 2017-11-28 11:26:09 +0100 | |
| commit | f0ade121f9cef3b39c41816536f4e400f43dd4af (patch) | |
| tree | db484da8c9bf02ecdf86e117def96f555191787b /mobile | |
| parent | 4516fab0081b0db73b7401816a521453ab77ecc6 (diff) | |
| download | OneRoll-f0ade121f9cef3b39c41816536f4e400f43dd4af.tar.gz OneRoll-f0ade121f9cef3b39c41816536f4e400f43dd4af.zip | |
-fix copy of if operator
Compare method was not shared.
Diffstat (limited to 'mobile')
| -rw-r--r-- | mobile/maincontroler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/maincontroler.cpp b/mobile/maincontroler.cpp index b0b3c02..c24e512 100644 --- a/mobile/maincontroler.cpp +++ b/mobile/maincontroler.cpp @@ -23,7 +23,7 @@ void MainControler::rollDice(QString cmd) { if(m_diceParser->parseLine(cmd)) { - m_diceParser->Start(); + m_diceParser->start(); for(int i = 0; i < m_diceParser->getStartNodeCount(); ++i) { //qDebug() << m_diceParser->getSumOfDiceResult(i); |