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