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/qPrefGeneral.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/qPrefGeneral.cpp')
-rw-r--r-- | core/settings/qPrefGeneral.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/settings/qPrefGeneral.cpp b/core/settings/qPrefGeneral.cpp index 9254a8c51..c0e8026fe 100644 --- a/core/settings/qPrefGeneral.cpp +++ b/core/settings/qPrefGeneral.cpp @@ -6,7 +6,7 @@ static const QString group = QStringLiteral("GeneralSettings"); QString qPrefGeneral::st_diveshareExport_uid; -static const QString st_diveshareExport_uid_default = ""; +static const QString st_diveshareExport_uid_default; bool qPrefGeneral::st_diveshareExport_private; static const bool st_diveshareExport_private_default = false; |