1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-02-17 16:20:48 +01:00

Fixed broken file path handling on non-ASCII file systems.

This commit is contained in:
Martin Tůma 2016-04-22 01:31:44 +02:00
parent 1b5bdc0f07
commit 2e4aeb57a8

View File

@ -22,7 +22,7 @@ int main(int argc, char *argv[])
gui.show(); gui.show();
for (int i = 1; i < argc; i++) for (int i = 1; i < argc; i++)
gui.openFile(argv[i]); gui.openFile(QString::fromLocal8Bit(argv[i]));
return app.exec(); return app.exec();
} }