diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-03 00:48:48 +0900 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2023-12-05 03:06:55 +0000 |
commit | 6d077d06067369f2060c1b011687941e84ece7c4 (patch) | |
tree | 19cccd2c9d0456e7606f5574e943ca7c51aaec5f /tdefile-plugins/torrent | |
parent | 15fd0d5c8e0d1c0eaf21b8794d9a14b706d8325b (diff) | |
download | tdenetwork-6d077d06067369f2060c1b011687941e84ece7c4.tar.gz tdenetwork-6d077d06067369f2060c1b011687941e84ece7c4.zip |
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdefile-plugins/torrent')
-rw-r--r-- | tdefile-plugins/torrent/tdefile_torrent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdefile-plugins/torrent/tdefile_torrent.cpp b/tdefile-plugins/torrent/tdefile_torrent.cpp index 7414689f..658a7097 100644 --- a/tdefile-plugins/torrent/tdefile_torrent.cpp +++ b/tdefile-plugins/torrent/tdefile_torrent.cpp @@ -396,7 +396,7 @@ bool KTorrentPlugin::writeInfo(const KFileMetaInfo &info) const if (!output.open(IO_WriteOnly | IO_Truncate)) return false; - return m_dict->writeToDevice(*TQT_TQIODEVICE(&output)); + return m_dict->writeToDevice(output); } #include "tdefile_torrent.moc" |