Skip to content

Commit

Permalink
Fix compilation once QTBUG-88431 gets fixed
Browse files Browse the repository at this point in the history
And also comes closes to Qt6 compatibility
  • Loading branch information
tsdgeos authored and plfiorini committed Nov 13, 2020
1 parent 5fd5ed2 commit e93bf95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daemon/XorgDisplayServer.cpp
Expand Up @@ -65,7 +65,7 @@ namespace SDDM {
// create a random hexadecimal number
const char *digits = "0123456789abcdef";
for (int i = 0; i < 32; ++i)
m_cookie[i] = digits[dis(gen)];
m_cookie[i] = QLatin1Char(digits[dis(gen)]);
}

XorgDisplayServer::~XorgDisplayServer() {
Expand Down

0 comments on commit e93bf95

Please sign in to comment.