summaryrefslogtreecommitdiffstats
path: root/src/kvirc/kvs/kvi_kvs_report.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvirc/kvs/kvi_kvs_report.cpp')
-rw-r--r--src/kvirc/kvs/kvi_kvs_report.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kvirc/kvs/kvi_kvs_report.cpp b/src/kvirc/kvs/kvi_kvs_report.cpp
index 9953591..aa40ef3 100644
--- a/src/kvirc/kvs/kvi_kvs_report.cpp
+++ b/src/kvirc/kvs/kvi_kvs_report.cpp
@@ -124,7 +124,7 @@ void KviKvsReport::findLineColAndListing(const TQChar * pBegin,const TQChar * pP
TQString * pListingStr = new TQString();
KviTQString::sprintf(*pListingStr,"%d ",iLine - 1);
*pListingStr += TQString(pPrevLine,pLineBegin - pPrevLine);
- pListingStr->tqreplace("\n","");
+ pListingStr->replace("\n","");
pListing->append(pListingStr);
}
@@ -143,7 +143,7 @@ void KviKvsReport::findLineColAndListing(const TQChar * pBegin,const TQChar * pP
TQString * pListingStr = new TQString();
KviTQString::sprintf(*pListingStr,"%c%d ",KVI_TEXT_BOLD,iLine);
*pListingStr += TQString(pLineBegin,pBegin - pLineBegin);
- pListingStr->tqreplace("\n","");
+ pListingStr->replace("\n","");
pListing->append(pListingStr);
}
@@ -164,7 +164,7 @@ void KviKvsReport::findLineColAndListing(const TQChar * pBegin,const TQChar * pP
TQString * pListingStr = new TQString();
KviTQString::sprintf(*pListingStr,"%d ",iLine + 1);
*pListingStr += TQString(pLineBegin,pBegin - pLineBegin);
- pListingStr->tqreplace("\n","");
+ pListingStr->replace("\n","");
pListing->append(pListingStr);
}