summaryrefslogtreecommitdiffstats
path: root/src/fetch/animenfofetcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetch/animenfofetcher.cpp')
-rw-r--r--src/fetch/animenfofetcher.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fetch/animenfofetcher.cpp b/src/fetch/animenfofetcher.cpp
index 3a93281..393313a 100644
--- a/src/fetch/animenfofetcher.cpp
+++ b/src/fetch/animenfofetcher.cpp
@@ -39,8 +39,8 @@ namespace {
using Tellico::Fetch::AnimeNfoFetcher;
-AnimeNfoFetcher::AnimeNfoFetcher(TQObject* tqparent_, const char* name_ /*=0*/)
- : Fetcher(tqparent_, name_), m_started(false) {
+AnimeNfoFetcher::AnimeNfoFetcher(TQObject* parent_, const char* name_ /*=0*/)
+ : Fetcher(parent_, name_), m_started(false) {
}
TQString AnimeNfoFetcher::defaultName() {
@@ -360,12 +360,12 @@ void AnimeNfoFetcher::updateEntry(Data::EntryPtr entry_) {
emit signalDone(this); // always need to emit this if not continuing with the search
}
-Tellico::Fetch::ConfigWidget* AnimeNfoFetcher::configWidget(TQWidget* tqparent_) const {
- return new AnimeNfoFetcher::ConfigWidget(tqparent_);
+Tellico::Fetch::ConfigWidget* AnimeNfoFetcher::configWidget(TQWidget* parent_) const {
+ return new AnimeNfoFetcher::ConfigWidget(parent_);
}
-AnimeNfoFetcher::ConfigWidget::ConfigWidget(TQWidget* tqparent_)
- : Fetch::ConfigWidget(tqparent_) {
+AnimeNfoFetcher::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();