Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2017-12-08 12:58:55 +0300
committerOlivier Goffart <ogoffart@woboq.com>2017-12-08 18:15:22 +0300
commit3df65460f515f012783732c52f0e50da14e36306 (patch)
tree6aa2d4a3ecf4c6e871a3ad90edfadb368043d7f6 /src/libsync/theme.h
parent74672d493d68a966095566f329563d701385b47a (diff)
Remove usage of QString::null
Replaces by "QString()"
Diffstat (limited to 'src/libsync/theme.h')
-rw-r--r--src/libsync/theme.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsync/theme.h b/src/libsync/theme.h
index ffc7569b3..c2cd4922f 100644
--- a/src/libsync/theme.h
+++ b/src/libsync/theme.h
@@ -120,7 +120,7 @@ public:
/**
* URL to help file
*/
- virtual QString helpUrl() const { return QString::null; }
+ virtual QString helpUrl() const { return QString(); }
/**
* Setting a value here will pre-define the server url.
@@ -149,7 +149,7 @@ public:
/**
* Override to encforce a particular locale, i.e. "de" or "pt_BR"
*/
- virtual QString enforcedLocale() const { return QString::null; }
+ virtual QString enforcedLocale() const { return QString(); }
/** colored, white or black */
QString systrayIconFlavor(bool mono, bool sysTrayMenuVisible = false) const;