diff options
author | Timothy Pearson <[email protected]> | 2011-12-19 11:35:35 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-19 11:35:35 -0600 |
commit | a2f8e999d0a8bd77f567b3335105e0f7e2b5f083 (patch) | |
tree | 15825fe8c3d48523fc4c7dc392ae39a9114f5c9f /kcm_gtk/kcmgtk.cpp | |
parent | 8b600a29ba4175eae4ef37518a317413d70eb3fe (diff) | |
download | gtk-qt-engine-a2f8e999d0a8bd77f567b3335105e0f7e2b5f083.tar.gz gtk-qt-engine-a2f8e999d0a8bd77f567b3335105e0f7e2b5f083.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'kcm_gtk/kcmgtk.cpp')
-rw-r--r-- | kcm_gtk/kcmgtk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kcm_gtk/kcmgtk.cpp b/kcm_gtk/kcmgtk.cpp index 219cbd4..79029a0 100644 --- a/kcm_gtk/kcmgtk.cpp +++ b/kcm_gtk/kcmgtk.cpp @@ -268,7 +268,7 @@ void KcmGtk::updateFontPreview() { widget->fontPreview->setFont(font); widget->fontPreview->setText( - i18n("%1 (size %2)").tqarg(font.family()).tqarg(TQString::number(font.pointSize()))); + i18n("%1 (size %2)").arg(font.family()).arg(TQString::number(font.pointSize()))); widget->fontPreview2->setFont(font); } @@ -627,7 +627,7 @@ void KcmGtk::writeFirefoxCSS(const TQString& path, const TQString& data) if (!file.open(IO_WriteOnly | IO_Truncate)) { - KMessageBox::error(this, i18n("Could not write to %1").tqarg(path), i18n("Mozilla profile")); + KMessageBox::error(this, i18n("Could not write to %1").arg(path), i18n("Mozilla profile")); return; } TQTextStream stream(&file); |