summaryrefslogtreecommitdiffstats
path: root/konversation/src/logfilereader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/logfilereader.cpp')
-rw-r--r--konversation/src/logfilereader.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/konversation/src/logfilereader.cpp b/konversation/src/logfilereader.cpp
index 9fce421..74ea0e8 100644
--- a/konversation/src/logfilereader.cpp
+++ b/konversation/src/logfilereader.cpp
@@ -17,15 +17,15 @@
#include "ircview.h"
#include "ircviewbox.h"
-#include <layout.h>
+#include <tqlayout.h>
#include <tqfile.h>
-#include <textstream.h>
+#include <tqtextstream.h>
#include <tqdockarea.h>
#include <tqpushbutton.h>
#include <tqlabel.h>
#include <tqregexp.h>
#include <tqspinbox.h>
-#include <stylesheet.h>
+#include <tqstylesheet.h>
#include <tqwhatsthis.h>
#include <kdialog.h>
@@ -111,8 +111,8 @@ void LogfileReader::updateView()
stream.setEncoding(TQTextStream::UnicodeUTF8);
// Set file pointer to <pos> bytes from the end
- if(stream.device()->size()>pos)
- stream.device()->at(stream.device()->size()-pos);
+ if(stream.tqdevice()->size()>pos)
+ stream.tqdevice()->at(stream.tqdevice()->size()-pos);
// Skip first line, since it may be incomplete
stream.readLine();
TQString str;