Browse Source

- Coding Standards

cl-refactor
yann300 10 years ago
parent
commit
85fa520d1b
  1. 4
      mix/DebuggingStateWrapper.h

4
mix/DebuggingStateWrapper.h

@ -65,7 +65,7 @@ class HumanReadableCode: public QObject
Q_PROPERTY(int processIndex READ processIndex)
public:
HumanReadableCode(QString _line, int _processIndex, QObject* _parent) : m_line(_line), m_processIndex(_processIndex), QObject(_parent) {}
HumanReadableCode(QString _line, int _processIndex, QObject* _parent): QObject(_parent), m_line(_line), m_processIndex(_processIndex) {}
QString line() { return m_line; }
int processIndex() { return m_processIndex; }
@ -80,7 +80,7 @@ class QQMLMap : public QObject
Q_OBJECT
public:
QQMLMap(QMap<int, int> _map, QObject* _parent) : m_map(_map), QObject(_parent) { }
QQMLMap(QMap<int, int> _map, QObject* _parent): QObject(_parent), m_map(_map) { }
Q_INVOKABLE int getValue(int _key) { return m_map.value(_key); }
private:

Loading…
Cancel
Save