summaryrefslogtreecommitdiffstats
path: root/superkaramba/src/noatunsensor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'superkaramba/src/noatunsensor.cpp')
-rw-r--r--superkaramba/src/noatunsensor.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/superkaramba/src/noatunsensor.cpp b/superkaramba/src/noatunsensor.cpp
index d948bc9..798557f 100644
--- a/superkaramba/src/noatunsensor.cpp
+++ b/superkaramba/src/noatunsensor.cpp
@@ -77,17 +77,17 @@ void NoatunSensor::update()
else
{
- format.tqreplace( TQRegExp("%title", false), title );
- format.tqreplace( TQRegExp("%id", false), noatunID );
+ format.replace( TQRegExp("%title", false), title );
+ format.replace( TQRegExp("%id", false), noatunID );
- format.tqreplace( TQRegExp("%length", false), TQTime( 0,0,0 ).
+ format.replace( TQRegExp("%length", false), TQTime( 0,0,0 ).
addMSecs( songLength )
.toString( "h:mm:ss" ) );
- format.tqreplace( TQRegExp("%time", false), TQTime( 0,0,0 ).
+ format.replace( TQRegExp("%time", false), TQTime( 0,0,0 ).
addMSecs( currentTime )
.toString( "h:mm:ss" ) );
- format.tqreplace( TQRegExp("%remain", false), TQTime( 0,0,0 ).
+ format.replace( TQRegExp("%remain", false), TQTime( 0,0,0 ).
addMSecs( songLength )
.addMSecs(-currentTime )
.toString( "h:mm:ss" ) );
@@ -147,8 +147,8 @@ TQString NoatunSensor::getTitle()
if (replyType == TQSTRING_OBJECT_NAME_STRING)
{
reply >> result;
- result.tqreplace( TQRegExp("_")," " );
- result.tqreplace( TQRegExp(".mp3$"),"" );
+ result.replace( TQRegExp("_")," " );
+ result.replace( TQRegExp(".mp3$"),"" );
}
else