summaryrefslogtreecommitdiffstats
path: root/src/fetch/bibsonomyfetcher.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/fetch/bibsonomyfetcher.cpp
parent8d9b90ca794ffabf151719c2edebe9278a2d3f36 (diff)
downloadtellico-26f93a7d9105483b49ae930545ddb2873156fa8e.tar.gz
tellico-26f93a7d9105483b49ae930545ddb2873156fa8e.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/fetch/bibsonomyfetcher.cpp')
-rw-r--r--src/fetch/bibsonomyfetcher.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fetch/bibsonomyfetcher.cpp b/src/fetch/bibsonomyfetcher.cpp
index 3467a2d..4ce1cd4 100644
--- a/src/fetch/bibsonomyfetcher.cpp
+++ b/src/fetch/bibsonomyfetcher.cpp
@@ -63,7 +63,7 @@ void BibsonomyFetcher::search(FetchKey key_, const TQString& value_) {
m_started = true;
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;
}
@@ -160,11 +160,11 @@ KURL BibsonomyFetcher::searchURL(FetchKey key_, const TQString& value_) const {
switch(key_) {
case Person:
- u.addPath(TQString::fromLatin1("author/%1").tqarg(value_));
+ u.addPath(TQString::fromLatin1("author/%1").arg(value_));
break;
case Keyword:
- u.addPath(TQString::fromLatin1("search/%1").tqarg(value_));
+ u.addPath(TQString::fromLatin1("search/%1").arg(value_));
break;
default: