summaryrefslogtreecommitdiffstats
path: root/src/fetch/discogsfetcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetch/discogsfetcher.cpp')
-rw-r--r--src/fetch/discogsfetcher.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fetch/discogsfetcher.cpp b/src/fetch/discogsfetcher.cpp
index 5260794..2d3384b 100644
--- a/src/fetch/discogsfetcher.cpp
+++ b/src/fetch/discogsfetcher.cpp
@@ -94,7 +94,7 @@ void DiscogsFetcher::doSearch() {
u.addQueryItem(TQString::fromLatin1("api_key"), m_apiKey);
if(!canFetch(Kernel::self()->collectionType())) {
- message(i18n("%1 does not allow searching for this collection type.").tqarg(source()), MessageHandler::Warning);
+ message(i18n("%1 does not allow searching for this collection type.").arg(source()), MessageHandler::Warning);
stop();
return;
}
@@ -107,7 +107,7 @@ void DiscogsFetcher::doSearch() {
break;
case Person:
- u.setPath(TQString::fromLatin1("/artist/%1").tqarg(m_value));
+ u.setPath(TQString::fromLatin1("/artist/%1").arg(m_value));
break;
case Keyword:
@@ -256,7 +256,7 @@ Tellico::Data::EntryPtr DiscogsFetcher::fetchEntry(uint uid_) {
KURL u(TQString::fromLatin1("/home/robby/discogs-release.xml"));
#else
KURL u(TQString::fromLatin1(DISCOGS_API_URL));
- u.setPath(TQString::fromLatin1("/release/%1").tqarg(release));
+ u.setPath(TQString::fromLatin1("/release/%1").arg(release));
u.addQueryItem(TQString::fromLatin1("f"), TQString::fromLatin1("xml"));
u.addQueryItem(TQString::fromLatin1("api_key"), m_apiKey);
#endif