diff options
author | Michele Calgaro <[email protected]> | 2023-12-03 00:36:48 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-04 14:02:55 +0900 |
commit | 4f29422c2b51f8e38a8d2240dbae152cb3157b69 (patch) | |
tree | bf00bfa263c9c5f520cd67207b2e4c1bf2ea3142 /src/translators/tellicozipexporter.cpp | |
parent | 252be932ea74bff9fbd8989cdc7a8bf94febcfed (diff) | |
download | tellico-4f29422c2b51f8e38a8d2240dbae152cb3157b69.tar.gz tellico-4f29422c2b51f8e38a8d2240dbae152cb3157b69.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/translators/tellicozipexporter.cpp')
-rw-r--r-- | src/translators/tellicozipexporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/translators/tellicozipexporter.cpp b/src/translators/tellicozipexporter.cpp index 18c7c8e..863d78e 100644 --- a/src/translators/tellicozipexporter.cpp +++ b/src/translators/tellicozipexporter.cpp @@ -71,7 +71,7 @@ bool TellicoZipExporter::exec() { return true; // intentionally cancelled } - KZip zip(TQT_TQIODEVICE(&buf)); + KZip zip(&buf); zip.open(IO_WriteOnly); zip.writeFile(TQString::fromLatin1("tellico.xml"), TQString(), TQString(), xml.length(), xml); |