Applied project style to multiple files

This commit is contained in:
fourtf
2018-07-06 18:10:21 +02:00
parent 3993708164
commit 535c0616a3
26 changed files with 149 additions and 157 deletions
+3 -3
View File
@@ -13,7 +13,7 @@ class SimpleSignalVector
public:
SimpleSignalVector &operator=(std::vector<TValue> &other)
{
this->data = other;
this->data_ = other;
this->updated.invoke();
@@ -22,13 +22,13 @@ public:
operator std::vector<TValue> &()
{
return this->data;
return this->data_;
}
pajlada::Signals::NoArgSignal updated;
private:
std::vector<TValue> data;
std::vector<TValue> data_;
};
} // namespace chatterino