diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2019-04-01 23:17:17 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 12:59:17 +0300 |
commit | 2e59196e6b8d1f5461cddfc119d37c40e0027776 (patch) | |
tree | 560023634fcddd2132cfc86f6d85452d7044fbc6 /core/settings/qPrefUpdateManager.cpp | |
parent | ee0acb0d4045bef68bdb153c76f8506c68d8ea9f (diff) | |
download | subsurface-2e59196e6b8d1f5461cddfc119d37c40e0027776.tar.gz |
use the default constructor for empty QString and QByteArray constants
Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
Diffstat (limited to 'core/settings/qPrefUpdateManager.cpp')
-rw-r--r-- | core/settings/qPrefUpdateManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/settings/qPrefUpdateManager.cpp b/core/settings/qPrefUpdateManager.cpp index 518296fea..4b5fb9e45 100644 --- a/core/settings/qPrefUpdateManager.cpp +++ b/core/settings/qPrefUpdateManager.cpp @@ -6,7 +6,7 @@ static const QString group = QStringLiteral("UpdateManager"); QString qPrefUpdateManager::st_uuidString; -static const QString st_uuidString_default = ""; +static const QString st_uuidString_default; qPrefUpdateManager::qPrefUpdateManager(QObject *parent) : QObject(parent) { |