diff options
| author | Brian Munro <brian.alexander.munro@gmail.com> | 2018-02-22 18:02:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-22 18:02:02 +0200 |
| commit | 28714f0eb800f2170acbf29dddce1582d20d6b8b (patch) | |
| tree | 0684c123db375336e0e03f0240155a12e744db16 /src/moapplication.h | |
| parent | 0bcd752b2758bdb072b498ccc90905276be065e9 (diff) | |
| parent | 5e5c9c07291f6b09623d31c92b1fb61c4ede576e (diff) | |
Merge pull request #236 from SuperSandro2000/new_vfs_library
Update reame.md
Diffstat (limited to 'src/moapplication.h')
| -rw-r--r-- | src/moapplication.h | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/src/moapplication.h b/src/moapplication.h index 9db130af..bb8de414 100644 --- a/src/moapplication.h +++ b/src/moapplication.h @@ -23,29 +23,24 @@ 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);
- MOApplication(int &argc, char **argv);
-
- virtual bool notify (QObject *receiver, QEvent *event);
+ 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
|
