From dc07846059a60d069687585cc72ff501a2096296 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 19 Dec 2011 11:57:28 -0600 Subject: Remove additional unneeded tq method conversions --- juk/systemtray.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'juk/systemtray.cpp') diff --git a/juk/systemtray.cpp b/juk/systemtray.cpp index 1c0abaec..4b6587f7 100644 --- a/juk/systemtray.cpp +++ b/juk/systemtray.cpp @@ -385,7 +385,7 @@ void SystemTray::createPopup() int labelCount = 0; TQString title = TQStyleSheet::escape(playingInfo->title()); - m_labels[labelCount++]->setText(TQString("

%1

").tqarg(title)); + m_labels[labelCount++]->setText(TQString("

%1

").arg(title)); if(!playingInfo->artist().isEmpty()) m_labels[labelCount++]->setText(playingInfo->artist()); @@ -393,8 +393,8 @@ void SystemTray::createPopup() if(!playingInfo->album().isEmpty()) { TQString album = TQStyleSheet::escape(playingInfo->album()); TQString s = playingInfo->year() > 0 - ? TQString("%1 (%2)").tqarg(album).tqarg(playingInfo->year()) - : TQString("%1").tqarg(album); + ? TQString("%1 (%2)").arg(album).arg(playingInfo->year()) + : TQString("%1").arg(album); m_labels[labelCount++]->setText(s); } @@ -531,8 +531,8 @@ void SystemTray::setToolTip(const TQString &tip, const TQPixmap &cover) TQString html = i18n("%1 is Cover Art, %2 is the playing track, %3 is the appname", "
" "
%1%2
%3
"); - html = html.tqarg("%1").tqarg(tip), i18n("JuK")); + html = html.arg("%1").arg(tip), i18n("JuK")); TQToolTip::add(this, html); } -- cgit v1.2.1