diff options
Diffstat (limited to 'src/fetch/entrezfetcher.cpp')
-rw-r--r-- | src/fetch/entrezfetcher.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fetch/entrezfetcher.cpp b/src/fetch/entrezfetcher.cpp index 83fee42..99f01f1 100644 --- a/src/fetch/entrezfetcher.cpp +++ b/src/fetch/entrezfetcher.cpp @@ -45,7 +45,7 @@ namespace { using Tellico::Fetch::EntrezFetcher; -EntrezFetcher::EntrezFetcher(TQObject* tqparent_, const char* name_) : Fetcher(tqparent_, name_), m_xsltHandler(0), +EntrezFetcher::EntrezFetcher(TQObject* parent_, const char* name_) : Fetcher(parent_, name_), m_xsltHandler(0), m_step(Begin), m_started(false) { } @@ -463,12 +463,12 @@ void EntrezFetcher::updateEntry(Data::EntryPtr entry_) { emit signalDone(this); // always need to emit this if not continuing with the search } -Tellico::Fetch::ConfigWidget* EntrezFetcher::configWidget(TQWidget* tqparent_) const { - return new EntrezFetcher::ConfigWidget(tqparent_, this); +Tellico::Fetch::ConfigWidget* EntrezFetcher::configWidget(TQWidget* parent_) const { + return new EntrezFetcher::ConfigWidget(parent_, this); } -EntrezFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_, const EntrezFetcher* fetcher_/*=0*/) - : Fetch::ConfigWidget(tqparent_) { +EntrezFetcher::ConfigWidget::ConfigWidget(TQWidget* parent_, const EntrezFetcher* fetcher_/*=0*/) + : Fetch::ConfigWidget(parent_) { TQVBoxLayout* l = new TQVBoxLayout(optionsWidget()); l->addWidget(new TQLabel(i18n("This source has no options."), optionsWidget())); l->addStretch(); |