aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/Globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/core/lumina-desktop/Globals.h')
-rw-r--r--src-qt5/core/lumina-desktop/Globals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/Globals.h b/src-qt5/core/lumina-desktop/Globals.h
index 43ea3a87..f7821466 100644
--- a/src-qt5/core/lumina-desktop/Globals.h
+++ b/src-qt5/core/lumina-desktop/Globals.h
@@ -41,7 +41,7 @@ public:
char name[BUFSIZ];
int count = gethostname(name,sizeof(name));
if (count < 0) {
- return QString::null;
+ return QString();
}
return QString::fromLocal8Bit(name,count);
}
bgstack15