diff options
| author | Brian Munro <brian.alexander.munro@gmail.com> | 2018-02-23 06:38:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-23 06:38:12 +0200 |
| commit | 0a4fa10ca402c636b40124e0d1115c7b92a3d66d (patch) | |
| tree | 312024abbd7c3c100274f3a8031d49096480b654 /src/moapplication.h | |
| parent | 28714f0eb800f2170acbf29dddce1582d20d6b8b (diff) | |
| parent | ea6292168a6acd4c263913f0ccd7dd64daf4f5cf (diff) | |
Merge pull request #237 from SuperSandro2000/new_vfs_library
Revert "Applied clang-format on source"
Diffstat (limited to 'src/moapplication.h')
| -rw-r--r-- | src/moapplication.h | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/moapplication.h b/src/moapplication.h index bb8de414..9db130af 100644 --- a/src/moapplication.h +++ b/src/moapplication.h @@ -23,24 +23,29 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QApplication>
#include <QFileSystemWatcher>
+
class MOApplication : public QApplication {
- Q_OBJECT
+Q_OBJECT
public:
- MOApplication(int& argc, char** argv);
- virtual bool notify(QObject* receiver, QEvent* event);
+ MOApplication(int &argc, char **argv);
+
+ virtual bool notify (QObject *receiver, QEvent *event);
public slots:
- bool setStyleFile(const QString& style);
+ bool setStyleFile(const QString &style);
private slots:
- void updateStyle(const QString& fileName);
+ void updateStyle(const QString &fileName);
private:
- QFileSystemWatcher m_StyleWatcher;
- QString m_DefaultStyle;
+
+ QFileSystemWatcher m_StyleWatcher;
+ QString m_DefaultStyle;
+
};
+
#endif // MOAPPLICATION_H
|
