diff options
-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) |