diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-01 09:33:06 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-01 09:33:06 -0500 |
commit | 158db259c282e1f3f4857bf5f0e88f74bfc58268 (patch) | |
tree | ee7efe4acb650bdb7e9dcde408b5598efdcda64c /lumina-open | |
parent | Make the taskmanager plugin capable of two modes: (diff) | |
download | lumina-158db259c282e1f3f4857bf5f0e88f74bfc58268.tar.gz lumina-158db259c282e1f3f4857bf5f0e88f74bfc58268.tar.bz2 lumina-158db259c282e1f3f4857bf5f0e88f74bfc58268.zip |
Make sure that any argv[] -> QString translations from CLI input are run through QString::fromLocal8Bit(). This should correctly catch any key presses specific to particular locales.
Diffstat (limited to 'lumina-open')
-rw-r--r-- | lumina-open/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-open/main.cpp b/lumina-open/main.cpp index 36d6c1ec..a508ca4d 100644 --- a/lumina-open/main.cpp +++ b/lumina-open/main.cpp @@ -171,7 +171,7 @@ void getCMD(int argc, char ** argv, QString& binary, QString& args, QString& pat } return; }else{ - inFile = argv[i]; + inFile = QString::fromLocal8Bit(argv[i]); break; } } |