summaryrefslogtreecommitdiffstats
path: root/konqueror/about/konq_aboutpage.cc
diff options
context:
space:
mode:
Diffstat (limited to 'konqueror/about/konq_aboutpage.cc')
-rw-r--r--konqueror/about/konq_aboutpage.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/konqueror/about/konq_aboutpage.cc b/konqueror/about/konq_aboutpage.cc
index 78722b1a4..188971bd9 100644
--- a/konqueror/about/konq_aboutpage.cc
+++ b/konqueror/about/konq_aboutpage.cc
@@ -78,11 +78,11 @@ TQString KonqAboutPageFactory::loadFile( const TQString& file )
// otherwise all embedded objects are referenced as about:/...
TQString basehref = TQString::tqfromLatin1("<BASE HREF=\"file:") +
- file.left( file.tqfindRev( '/' )) +
+ file.left( file.findRev( '/' )) +
TQString::tqfromLatin1("/\">\n");
TQRegExp reg("<head>");
reg.setCaseSensitive(FALSE);
- res.tqreplace(reg, "<head>\n\t" + basehref);
+ res.replace(reg, "<head>\n\t" + basehref);
return res;
}