reformat code

This commit is contained in:
Rasmus Karlsson
2017-07-31 00:57:42 +02:00
parent 0088374694
commit 626002c8ff
11 changed files with 149 additions and 127 deletions
+6 -5
View File
@@ -43,7 +43,8 @@ public:
return _value;
}
T &getnonConst() {
T &getnonConst()
{
return _value;
}
@@ -69,12 +70,12 @@ public:
}
}
void insertMap(QString id, bool sound, bool task){
QPair<bool,bool> pair(sound,task);
_value.insert(id,pair);
void insertMap(QString id, bool sound, bool task)
{
QPair<bool, bool> pair(sound, task);
_value.insert(id, pair);
}
boost::signals2::signal<void(const T &newValue)> valueChanged;
private: