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:
parent
1b5bdc0f07
commit
2e4aeb57a8
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user