diff options
Diffstat (limited to 'knewsticker/knewsticker.cpp')
-rw-r--r-- | knewsticker/knewsticker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/knewsticker/knewsticker.cpp b/knewsticker/knewsticker.cpp index ff525e3e..535485bf 100644 --- a/knewsticker/knewsticker.cpp +++ b/knewsticker/knewsticker.cpp @@ -288,14 +288,14 @@ void KNewsTicker::slotNotifyOfFailures() if (m_failedNewsUpdates.count() == 1) notification = i18n("<qt>Could not update news site '%1'.<br>" "The supplied resource file is probably invalid or" - " broken.</qt>").tqarg(m_failedNewsUpdates.first()); + " broken.</qt>").arg(m_failedNewsUpdates.first()); else if (m_failedNewsUpdates.count() > 1 && m_failedNewsUpdates.count() < 8) { notification = i18n("<qt>The following news sites had problems. Their" " resource files are probably invalid or broken.<ul>"); TQStringList::ConstIterator it = m_failedNewsUpdates.begin(); TQStringList::ConstIterator end = m_failedNewsUpdates.end(); for (; it != end; ++it) - notification += TQString::fromLatin1("<li>%1</li>").tqarg(*it); + notification += TQString::fromLatin1("<li>%1</li>").arg(*it); notification += TQString::fromLatin1("</ul></qt>"); } else notification = i18n("Failed to update several news" |