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/shared/util.cpp | |
| 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/shared/util.cpp')
| -rw-r--r-- | src/shared/util.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/util.cpp b/src/shared/util.cpp index 29e52f40..8d8c2000 100644 --- a/src/shared/util.cpp +++ b/src/shared/util.cpp @@ -1492,11 +1492,11 @@ QString WindowsInfo::toString() const const QString real = m_real.toString();
// version
- sl.push_back("version: " + reported);
+ sl.push_back("version " + reported);
// real version if different
if (compatibilityMode()) {
- sl.push_back("real version: " + real);
+ sl.push_back("real version " + real);
}
// build.UBR, such as 17763.557
|
