aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/parsingtoolbox.cpp
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2016-04-03 14:29:21 +0200
committerRenaud G <renaud@rolisteam.org>2016-04-03 14:29:21 +0200
commit8122ac01552c631b14ea096117c775ff6509ea24 (patch)
tree6ee7fe36d2b2053dc13e7da552a2ffc96d7c701a /parsingtoolbox.cpp
parentd466a529fe2ed5c09c2353c67c82df5c83d831cf (diff)
downloadOneRoll-8122ac01552c631b14ea096117c775ff6509ea24.tar.gz
OneRoll-8122ac01552c631b14ea096117c775ff6509ea24.zip
change contact link.
Diffstat (limited to 'parsingtoolbox.cpp')
-rw-r--r--parsingtoolbox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/parsingtoolbox.cpp b/parsingtoolbox.cpp
index 1c9dc90..7a52c65 100644
--- a/parsingtoolbox.cpp
+++ b/parsingtoolbox.cpp
@@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (C) 2014 by Renaud Guezennec *
-* http://renaudguezennec.homelinux.org/accueil,3.html *
+* http://www.rolisteam.org/contact *
* *
* This file is part of DiceParser *
* *
@@ -100,8 +100,8 @@ bool ParsingToolBox::readArithmeticOperator(QString &str, ScalarOperatorNode::Ar
{
bool found = false;
//QHash<QString,ScalarOperatorNode::ArithmeticOperator>::Iterator
- auto i = m_arithmeticOperation->begin();
- for(; i !=m_arithmeticOperation->end() && !found; ++i)
+
+ for(auto i = m_arithmeticOperation->begin() ; i !=m_arithmeticOperation->end() && !found; ++i)
{
if(str.startsWith(i.key()))
{