29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
|
diff --git a/src/utils/history.cpp b/src/utils/history.cpp
|
||
|
index f3ee09d0..7c85c34b 100644
|
||
|
--- a/src/utils/history.cpp
|
||
|
+++ b/src/utils/history.cpp
|
||
|
@@ -76,9 +76,9 @@ const HistoryFileName& History::unpackFileName(const QString& fileNamePacked)
|
||
|
int nPathIndex = fileNamePacked.lastIndexOf("/");
|
||
|
QStringList unpackedFileName;
|
||
|
if (nPathIndex == -1) {
|
||
|
- unpackedFileName = fileNamePacked.split("-");
|
||
|
+ unpackedFileName = fileNamePacked.split("|");
|
||
|
} else {
|
||
|
- unpackedFileName = fileNamePacked.mid(nPathIndex + 1).split("-");
|
||
|
+ unpackedFileName = fileNamePacked.mid(nPathIndex + 1).split("|");
|
||
|
}
|
||
|
|
||
|
switch (unpackedFileName.length()) {
|
||
|
@@ -109,9 +109,9 @@ const QString& History::packFileName(const QString& storageType,
|
||
|
if (storageType.length() > 0) {
|
||
|
if (deleteToken.length() > 0) {
|
||
|
m_packedFileName =
|
||
|
- storageType + "-" + deleteToken + "-" + m_packedFileName;
|
||
|
+ storageType + "|" + deleteToken + "|" + m_packedFileName;
|
||
|
} else {
|
||
|
- m_packedFileName = storageType + "-" + m_packedFileName;
|
||
|
+ m_packedFileName = storageType + "|" + m_packedFileName;
|
||
|
}
|
||
|
}
|
||
|
return m_packedFileName;
|