diff options
Diffstat (limited to 'kmailcvt/filter_thebat.cxx')
-rw-r--r-- | kmailcvt/filter_thebat.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmailcvt/filter_thebat.cxx b/kmailcvt/filter_thebat.cxx index 98d23cb66..b2e737dad 100644 --- a/kmailcvt/filter_thebat.cxx +++ b/kmailcvt/filter_thebat.cxx @@ -157,7 +157,7 @@ void FilterTheBat::importFiles( FilterInfo *info, const TQString& FileName) // if you use readLine() to read from a file with binary data // TQFile::at() and TQFile::atEnd() return wrong value. So we // never get TQFile::atEnd() == true in some cases. This looks - // like a bug in Qt3 maybe fixed in Qt4. + // like a bug in TQt3 maybe fixed in TQt4. // while((l = tbb.readBlock(input.data(),50)) ) { if(info->shouldTerminate()) { @@ -178,7 +178,7 @@ void FilterTheBat::importFiles( FilterInfo *info, const TQString& FileName) } } else { ++count; - endOfEmail = (tbb.at() - l + _tmp.find(regexp)); + endOfEmail = (tbb.at() - l + _tmp.tqfind(regexp)); offsets.append(endOfEmail); } } @@ -213,7 +213,7 @@ void FilterTheBat::importFiles( FilterInfo *info, const TQString& FileName) tmp.file()->writeBlock( input, endPos-lastPos ); tmp.close(); - //KMessageBox::warningContinueCancel(info->parent(), ""); + //KMessageBox::warningContinueCancel(info->tqparent(), ""); if(info->removeDupMsg) addMessage( info, _path, tmp.name() ); else |