summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 00:35:35 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-03 15:24:57 +0900
commitb20ecacd33c31afd328b98cd2ad26248da61508f (patch)
treeced78c1cb695097d6e1f04de7a00d70e1462b8d2
parent9d90808b9027115d2e50038f528a9e9b07f7e781 (diff)
downloadbibletime-b20ecacd33c31afd328b98cd2ad26248da61508f.tar.gz
bibletime-b20ecacd33c31afd328b98cd2ad26248da61508f.zip
Replaced various '#define' with actual strings - part 5
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--bibletime/frontend/mainindex/cindexitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bibletime/frontend/mainindex/cindexitem.cpp b/bibletime/frontend/mainindex/cindexitem.cpp
index 78594eb..12e89e0 100644
--- a/bibletime/frontend/mainindex/cindexitem.cpp
+++ b/bibletime/frontend/mainindex/cindexitem.cpp
@@ -1102,7 +1102,7 @@ const bool CBookmarkFolder::loadBookmarks( const TQString& filename ) {
if (file.open(IO_ReadOnly)) {
TQTextStream t;
t.setEncoding(TQTextStream::UnicodeUTF8); //set encoding before file is used for input!
- t.setDevice(TQT_TQIODEVICE(&file));
+ t.setDevice(&file);
xml = t.read();
file.close();
}