diff options
author | tv <tv@krebsco.de> | 2024-12-23 23:24:59 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2024-12-23 23:24:59 +0100 |
commit | 79f1d3c6e99987c93fe7196eec3b63ec5305e6bc (patch) | |
tree | 651ac654dd7ea491f957f0110a8bb5f8ae564dfa /krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.history.patch | |
parent | 32e3b1071cfab6026795f44d38d496e6a7e8af8a (diff) |
Diffstat (limited to 'krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.history.patch')
-rw-r--r-- | krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.history.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.history.patch b/krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.history.patch deleted file mode 100644 index 66f28a661..000000000 --- a/krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.history.patch +++ /dev/null @@ -1,28 +0,0 @@ -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; |