summaryrefslogtreecommitdiffstats
path: root/src/fetchdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fetchdialog.cpp')
-rw-r--r--src/fetchdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fetchdialog.cpp b/src/fetchdialog.cpp
index 18a17c8..f80a1aa 100644
--- a/src/fetchdialog.cpp
+++ b/src/fetchdialog.cpp
@@ -82,8 +82,8 @@ class FetchDialog::SearchResultItem : public Tellico::GUI::ListViewItem {
Fetch::SearchResult* m_result;
};
-FetchDialog::FetchDialog(TQWidget* tqparent_, const char* name_)
- : KDialogBase(tqparent_, name_, false, i18n("Internet Search"), 0),
+FetchDialog::FetchDialog(TQWidget* parent_, const char* name_)
+ : KDialogBase(parent_, name_, false, i18n("Internet Search"), 0),
m_timer(new TQTimer(this)), m_started(false) {
m_collType = Kernel::self()->collectionType();
@@ -288,7 +288,7 @@ FetchDialog::~FetchDialog() {
saveDialogSize(TQString::tqfromLatin1("Fetch Dialog Options"));
KConfigGroup config(kapp->config(), "Fetch Dialog Options");
- config.writeEntry("Splitter Sizes", static_cast<TQSplitter*>(m_listView->tqparentWidget())->sizes());
+ config.writeEntry("Splitter Sizes", static_cast<TQSplitter*>(m_listView->parentWidget())->sizes());
config.writeEntry("Search Key", m_keyCombo->currentData().toInt());
config.writeEntry("Search Source", m_sourceCombo->currentText());
}