Renamed private members

This commit is contained in:
fourtf
2018-07-06 19:23:47 +02:00
parent 6935619820
commit 280bb4cf8e
141 changed files with 1754 additions and 1861 deletions
+3 -3
View File
@@ -16,16 +16,16 @@ class LambdaRunnable : public QRunnable
public:
LambdaRunnable(std::function<void()> action)
{
this->action = action;
this->action_ = action;
}
void run()
{
this->action();
this->action_();
}
private:
std::function<void()> action;
std::function<void()> action_;
};
// Taken from