mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Fixed broken file path handling on non-ASCII file systems.
This commit is contained in:
parent
1b5bdc0f07
commit
2e4aeb57a8
@ -22,7 +22,7 @@ int main(int argc, char *argv[])
|
||||
gui.show();
|
||||
|
||||
for (int i = 1; i < argc; i++)
|
||||
gui.openFile(argv[i]);
|
||||
gui.openFile(QString::fromLocal8Bit(argv[i]));
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user