diff options
Diffstat (limited to 'noatun/modules/systray')
-rw-r--r-- | noatun/modules/systray/systray.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/noatun/modules/systray/systray.cpp b/noatun/modules/systray/systray.cpp index 3303ad6a..4d008783 100644 --- a/noatun/modules/systray/systray.cpp +++ b/noatun/modules/systray/systray.cpp @@ -213,21 +213,21 @@ void NoatunSystray::slotPlayPause() if(!item.isProperty("title")) { // No metadata - s = TQString("<nobr>%1</nobr>").tqarg(item.title()); + s = TQString("<nobr>%1</nobr>").arg(item.title()); } else { - s = TQString("<h2><nobr>%1</nobr></h2>").tqarg(item.property("title")); + s = TQString("<h2><nobr>%1</nobr></h2>").arg(item.property("title")); if(item.isProperty("author")) - s += TQString("<nobr>%1</nobr><br>").tqarg(item.property("author")); + s += TQString("<nobr>%1</nobr><br>").arg(item.property("author")); if(item.isProperty("album")) { if(item.isProperty("date")) - s += TQString("<nobr>%1 (%2)</nobr><br>").tqarg(item.property("album")).tqarg(item.property("date")); + s += TQString("<nobr>%1 (%2)</nobr><br>").arg(item.property("album")).arg(item.property("date")); else - s += TQString("<nobr>%1</nobr><br>").tqarg(item.property("album")); + s += TQString("<nobr>%1</nobr><br>").arg(item.property("album")); } } @@ -242,11 +242,11 @@ void NoatunSystray::slotPlayPause() setTipText(TQString("<qt><br><table cellspacing=0 cellpadding=0><tr>" \ "<td align=center valign=center><h4><nobr>%1</nobr></h4>%2</td>" \ "<td valign=center><img src='%3'></td>" \ - "</qt></tr></table>").tqarg(status).tqarg(s).tqarg(tmpCoverPath)); + "</qt></tr></table>").arg(status).arg(s).arg(tmpCoverPath)); } else { - setTipText(TQString("<qt><center><h4><nobr>%1</nobr></h4>%2</center></qt>").tqarg(status).tqarg(s)); + setTipText(TQString("<qt><center><h4><nobr>%1</nobr></h4>%2</center></qt>").arg(status).arg(s)); } } @@ -256,7 +256,7 @@ void NoatunSystray::slotStopped() if(!napp->player()->current()) return; changeTray("player_stop"); - setTipText(TQString("<qt><nobr><h4>%1</h4></nobr></qt>").tqarg(i18n("Noatun - Stopped"))); + setTipText(TQString("<qt><nobr><h4>%1</h4></nobr></qt>").arg(i18n("Noatun - Stopped"))); } |