diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 17:06:41 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-06-21 22:14:51 +0200 |
commit | 34b1e17b6e8acfd257569c283dd9745a2bcbc1ea (patch) | |
tree | 7861671a4b60e4123364762dd60d1fbb22b59739 /compat/process-list.hpp | |
parent | 623fed924c415f93aac75296e4e6a71a830586ec (diff) |
compat/process-list: sprinkle QStringLiteral
Diffstat (limited to 'compat/process-list.hpp')
-rw-r--r-- | compat/process-list.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/process-list.hpp b/compat/process-list.hpp index 10613791..5e175210 100644 --- a/compat/process-list.hpp +++ b/compat/process-list.hpp @@ -103,7 +103,7 @@ static QStringList get_all_executable_names() if (idx != -1) { QString tmp = cmdline[0].mid(idx+1); - if (cmdline.size() > 1 && (tmp == "wine.bin" || tmp == "wine")) + if (cmdline.size() > 1 && (tmp == QStringLiteral("wine.bin") || tmp == QStringLiteral("wine"))) { idx = cmdline[1].lastIndexOf('/'); if (idx == -1) |