summaryrefslogtreecommitdiffstats
path: root/src/exportdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:41:14 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:41:14 -0600
commit26f93a7d9105483b49ae930545ddb2873156fa8e (patch)
treebd208384438ff06193cc1a0a1548a9d69a83cd41 /src/exportdialog.cpp
parent8d9b90ca794ffabf151719c2edebe9278a2d3f36 (diff)
downloadtellico-26f93a7d9105483b49ae930545ddb2873156fa8e.tar.gz
tellico-26f93a7d9105483b49ae930545ddb2873156fa8e.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/exportdialog.cpp')
-rw-r--r--src/exportdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exportdialog.cpp b/src/exportdialog.cpp
index 9de31db..954f4be 100644
--- a/src/exportdialog.cpp
+++ b/src/exportdialog.cpp
@@ -66,7 +66,7 @@ ExportDialog::ExportDialog(Export::Format format_, Data::CollPtr coll_, TQWidget
m_encodeUTF8 = new TQRadioButton(i18n("Encode in Unicode (UTF-8)"), bg);
m_encodeUTF8->setChecked(true);
TQWhatsThis::add(m_encodeUTF8, i18n("Encode the exported file in Unicode (UTF-8)."));
- TQString localStr = i18n("Encode in user locale (%1)").tqarg(
+ TQString localStr = i18n("Encode in user locale (%1)").arg(
TQString::fromLatin1(TQTextCodec::codecForLocale()->name()));
m_encodeLocale = new TQRadioButton(localStr, bg);
TQWhatsThis::add(m_encodeLocale, i18n("Encode the exported file in the local encoding."));