summaryrefslogtreecommitdiffstats
path: root/libkcddb/cdinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkcddb/cdinfo.cpp')
-rw-r--r--libkcddb/cdinfo.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libkcddb/cdinfo.cpp b/libkcddb/cdinfo.cpp
index eee89d87..b140f103 100644
--- a/libkcddb/cdinfo.cpp
+++ b/libkcddb/cdinfo.cpp
@@ -177,7 +177,7 @@ namespace KCDDB
}
}
- int slashPos = dtitle.tqfind('/');
+ int slashPos = dtitle.find('/');
if (-1 == slashPos)
{
@@ -274,9 +274,9 @@ namespace KCDDB
CDInfo::escape( const TQString& value )
{
TQString s = value;
- s.tqreplace( "\\", "\\\\" );
- s.tqreplace( "\n", "\\n" );
- s.tqreplace( "\t", "\\t" );
+ s.replace( "\\", "\\\\" );
+ s.replace( "\n", "\\n" );
+ s.replace( "\t", "\\t" );
return s;
}
@@ -286,9 +286,9 @@ namespace KCDDB
{
TQString s = value;
- s.tqreplace( "\\n", "\n" );
- s.tqreplace( "\\t", "\t" );
- s.tqreplace( "\\\\", "\\" );
+ s.replace( "\\n", "\n" );
+ s.replace( "\\t", "\t" );
+ s.replace( "\\\\", "\\" );
return s;
}