aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2016-07-15 02:20:41 +0200
committerRenaud G <renaud@rolisteam.org>2016-07-15 02:20:41 +0200
commit686cd8f0845386b6584c433dafc891ac5d9a826c (patch)
tree712e1f8862b0cca021b30e71c8b2e239e47ef66e
parent0f58b77592facb164b2f8a2ba2a06b6ba883e9ba (diff)
downloadOneRoll-686cd8f0845386b6584c433dafc891ac5d9a826c.tar.gz
OneRoll-686cd8f0845386b6584c433dafc891ac5d9a826c.zip
improve indentation
-rw-r--r--node/scalaroperatornode.cpp2
-rw-r--r--parsingtoolbox.h74
2 files changed, 38 insertions, 38 deletions
diff --git a/node/scalaroperatornode.cpp b/node/scalaroperatornode.cpp
index 0dcb9b9..692b09f 100644
--- a/node/scalaroperatornode.cpp
+++ b/node/scalaroperatornode.cpp
@@ -47,7 +47,7 @@ ScalarOperatorNode::~ScalarOperatorNode()
void ScalarOperatorNode::run(ExecutionNode* previous)
{
- m_previousNode = previous;
+ m_previousNode = previous;
if(NULL!=m_internalNode)
{
m_internalNode->run(this);
diff --git a/parsingtoolbox.h b/parsingtoolbox.h
index 3046570..e5f7fa8 100644
--- a/parsingtoolbox.h
+++ b/parsingtoolbox.h
@@ -41,25 +41,25 @@ class ParsingToolBox
public:
enum LIST_OPERATOR {NONE,UNIQUE};
- /**
- * @brief ParsingToolBox
- */
+ /**
+ * @brief ParsingToolBox
+ */
ParsingToolBox();
/**
* @brief ParsingToolBox
* @param data
*/
ParsingToolBox(const ParsingToolBox & data);
- /**
- * @brief ~ParsingToolBox
- */
- virtual ~ParsingToolBox();
- /**
- * @brief addSort
- * @param e
- * @param b
- * @return
- */
+ /**
+ * @brief ~ParsingToolBox
+ */
+ virtual ~ParsingToolBox();
+ /**
+ * @brief addSort
+ * @param e
+ * @param b
+ * @return
+ */
ExecutionNode* addSort(ExecutionNode* e,bool b);
/**
* @brief readAscending
@@ -67,18 +67,18 @@ public:
* @return
*/
static bool readAscending(QString& str);
- /**
- * @brief readLogicOperator
- * @param str
- * @param op
- * @return
- */
+ /**
+ * @brief readLogicOperator
+ * @param str
+ * @param op
+ * @return
+ */
bool readLogicOperator(QString& str,BooleanCondition::LogicOperator& op);
- /**
- * @brief readValidator
- * @param str
- * @return
- */
+ /**
+ * @brief readValidator
+ * @param str
+ * @return
+ */
Validator* readValidator(QString& str);
/**
* @brief readCompositeValidator
@@ -102,17 +102,17 @@ public:
* @return
*/
static bool readVariable(QString& str,qint64& myNumber);
- /**
- * @brief readOpenParentheses
- * @param str
- * @return
- */
+ /**
+ * @brief readOpenParentheses
+ * @param str
+ * @return
+ */
static bool readOpenParentheses(QString& str);
- /**
- * @brief readCloseParentheses
- * @param str
- * @return
- */
+ /**
+ * @brief readCloseParentheses
+ * @param str
+ * @return
+ */
static bool readCloseParentheses(QString& str);
/**
@@ -168,11 +168,11 @@ private:
QMap<QString,BooleanCondition::LogicOperator>* m_logicOp;
QMap<QString,CompositeValidator::LogicOperation>* m_logicOperation;
- QMap<QString,OperationCondition::ConditionOperator>* m_conditionOperation;
- QHash<QString,ScalarOperatorNode::ArithmeticOperator>* m_arithmeticOperation;
+ QMap<QString,OperationCondition::ConditionOperator>* m_conditionOperation;
+ QHash<QString,ScalarOperatorNode::ArithmeticOperator>* m_arithmeticOperation;
- static QHash<QString,QString>* m_variableHash;
+ static QHash<QString,QString>* m_variableHash;
};
#endif // PARSINGTOOLBOX_H