diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:00 -0600 |
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:35:00 -0600 |
| commit | 522c7294f06d294c77bc1ea7d0dec4b371c43373 (patch) | |
| tree | 22e15f6e31eba6c17ce06d8e1b0de24ef8b8f002 /src/likeback.cpp | |
| parent | 2a411f53a04f815770074b633e026a141f6fa875 (diff) | |
| download | basket-522c7294f06d294c77bc1ea7d0dec4b371c43373.tar.gz basket-522c7294f06d294c77bc1ea7d0dec4b371c43373.zip | |
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/likeback.cpp')
| -rw-r--r-- | src/likeback.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/likeback.cpp b/src/likeback.cpp index 5690842..ebae729 100644 --- a/src/likeback.cpp +++ b/src/likeback.cpp @@ -430,7 +430,7 @@ void LikeBack::showInformationMessage() "<p><b>" + (isDevelopmentVersion(d->aboutData->version()) ? i18n("Welcome to this testing version of %1.") : i18n("Welcome to %1.") - ).tqarg(d->aboutData->programName()) + "</b></p>" + ).arg(d->aboutData->programName()) + "</b></p>" "<p>" + i18n("To help us improve it, your comments are important.") + "</p>" "<p>" + ((buttons & LikeBack::Like) && (buttons & LikeBack::Dislike) ? @@ -740,7 +740,7 @@ LikeBackDialog::~LikeBackDialog() TQString LikeBackDialog::introductionText() { - TQString text = "<p>" + i18n("Please provide a brief description of your opinion of %1.").tqarg(m_likeBack->aboutData()->programName()) + " "; + TQString text = "<p>" + i18n("Please provide a brief description of your opinion of %1.").arg(m_likeBack->aboutData()->programName()) + " "; TQString languagesMessage = ""; if (!m_likeBack->acceptedLocales().isEmpty() && !m_likeBack->acceptedLanguagesMessage().isEmpty()) { @@ -760,7 +760,7 @@ TQString LikeBackDialog::introductionText() // TODO: Replace the URL with a localized one: text += languagesMessage + " " + i18n("You may be able to use an <a href=\"%1\">online translation tool</a>.") - .tqarg("http://www.google.com/language_tools?hl=" + KGlobal::locale()->language()) + .arg("http://www.google.com/language_tools?hl=" + KGlobal::locale()->language()) + " "; // If both "I Like" and "I Dislike" buttons are shown and one is clicked: |
