diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:52:23 -0600 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-20 19:43:55 +0200 |
commit | 35ef45e0e2bd97bea881ba3c53e0ab35ce84d82e (patch) | |
tree | ca400a824dfa32a8660091d10e8a904ad9099bae /kmouth/phraselist.cpp | |
parent | b33c04530149523d99425f92e428231b79b7991d (diff) | |
download | tdeaccessibility-35ef45e0e2bd97bea881ba3c53e0ab35ce84d82e.tar.gz tdeaccessibility-35ef45e0e2bd97bea881ba3c53e0ab35ce84d82e.zip |
Remove additional unneeded tq method conversions
(cherry picked from commit 92994ee2036ac7c4c68747f67dbc0ecbaf4c250c)
Diffstat (limited to 'kmouth/phraselist.cpp')
-rw-r--r-- | kmouth/phraselist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kmouth/phraselist.cpp b/kmouth/phraselist.cpp index 3cbd9d4..ef4557e 100644 --- a/kmouth/phraselist.cpp +++ b/kmouth/phraselist.cpp @@ -446,7 +446,7 @@ void PhraseList::save () { KURL url; if (book.save (this, i18n("Save As"), url, false) == -1) - KMessageBox::sorry(this,i18n("There was an error saving file\n%1").tqarg( url.url() )); + KMessageBox::sorry(this,i18n("There was an error saving file\n%1").arg( url.url() )); } void PhraseList::open () { @@ -472,7 +472,7 @@ void PhraseList::open (KURL url) { insertIntoPhraseList (*it, false); } else - KMessageBox::sorry(this,i18n("There was an error loading file\n%1").tqarg( url.url() )); + KMessageBox::sorry(this,i18n("There was an error loading file\n%1").arg( url.url() )); } #include "phraselist.moc" |