diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-17 11:41:09 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-22 07:33:38 -0400 |
| commit | 3bf7717c0a8507c9befce6b74c84c4dbdcac99de (patch) | |
| tree | cb0342126b8654b8f373190279a513537abcc684 /src/organizercore.h | |
| parent | 4dfaa363c05eb7691e2c7ea755c35758b62e0fc9 (diff) | |
moved Settings out of OrganizerCore so it can be created by itself to access settings early
set log level on startup
replaced more qDebug()
Diffstat (limited to 'src/organizercore.h')
| -rw-r--r-- | src/organizercore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/organizercore.h b/src/organizercore.h index ef1a4133..c368d101 100644 --- a/src/organizercore.h +++ b/src/organizercore.h @@ -97,7 +97,7 @@ public: static bool isNxmLink(const QString &link) { return link.startsWith("nxm://", Qt::CaseInsensitive); }
- OrganizerCore(const QSettings &initSettings);
+ OrganizerCore(Settings &settings);
~OrganizerCore();
@@ -336,7 +336,7 @@ private: Profile *m_CurrentProfile;
- Settings m_Settings;
+ Settings& m_Settings;
SelfUpdater m_Updater;
|
