summaryrefslogtreecommitdiffstats
path: root/src/fetch/bibsonomyfetcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetch/bibsonomyfetcher.cpp')
-rw-r--r--src/fetch/bibsonomyfetcher.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fetch/bibsonomyfetcher.cpp b/src/fetch/bibsonomyfetcher.cpp
index b2e7d2e..a6fd18a 100644
--- a/src/fetch/bibsonomyfetcher.cpp
+++ b/src/fetch/bibsonomyfetcher.cpp
@@ -35,8 +35,8 @@ namespace {
using Tellico::Fetch::BibsonomyFetcher;
-BibsonomyFetcher::BibsonomyFetcher(TQObject* tqparent_)
- : Fetcher(tqparent_), m_job(0), m_started(false) {
+BibsonomyFetcher::BibsonomyFetcher(TQObject* parent_)
+ : Fetcher(parent_), m_job(0), m_started(false) {
}
BibsonomyFetcher::~BibsonomyFetcher() {
@@ -188,12 +188,12 @@ void BibsonomyFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search
}
-Tellico::Fetch::ConfigWidget* BibsonomyFetcher::configWidget(TQWidget* tqparent_) const {
- return new BibsonomyFetcher::ConfigWidget(tqparent_, this);
+Tellico::Fetch::ConfigWidget* BibsonomyFetcher::configWidget(TQWidget* parent_) const {
+ return new BibsonomyFetcher::ConfigWidget(parent_, this);
}
-BibsonomyFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const BibsonomyFetcher*)
- : Fetch::ConfigWidget(tqparent_) {
+BibsonomyFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const BibsonomyFetcher*)
+ : Fetch::ConfigWidget(parent_) {
TQVBoxLayout* l = new TQVBoxLayout(optionsWidget());
l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget()));
l->addStretch();