diff options
author | Thiago Macieira <thiago@macieira.org> | 2013-12-19 17:02:34 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-12-20 09:53:05 -0800 |
commit | 8eb6dfdb02cf7b9d2c92f9e6ef28ad5312415302 (patch) | |
tree | c30921972538ec90afa11eb62c664ea58efac8d0 /qt-ui/divelistview.cpp | |
parent | dbdf50d03cd19b8cf62f39a2578996215f47034e (diff) | |
download | subsurface-8eb6dfdb02cf7b9d2c92f9e6ef28ad5312415302.tar.gz |
Use QFile::{encode,decode}Name for file names
And make them use UTF-8 on Windows instead of the local 8 bit encoding.
This will also get us the proper NFD encoding on OS X.
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelistview.cpp')
-rw-r--r-- | qt-ui/divelistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/divelistview.cpp b/qt-ui/divelistview.cpp index 2090f61a5..11d7124bc 100644 --- a/qt-ui/divelistview.cpp +++ b/qt-ui/divelistview.cpp @@ -765,7 +765,7 @@ void DiveListView::saveSelectedDivesAs() settings.setValue("LastDir",fileInfo.dir().path()); settings.endGroup(); - QByteArray bt = fileName.toLocal8Bit(); + QByteArray bt = QFile::encodeName(fileName); save_dives_logic(bt.data(), TRUE); } |