summaryrefslogtreecommitdiffstats
path: root/src/configdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/configdialog.cpp')
-rw-r--r--src/configdialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/configdialog.cpp b/src/configdialog.cpp
index 62b9945..edf0b6d 100644
--- a/src/configdialog.cpp
+++ b/src/configdialog.cpp
@@ -71,9 +71,9 @@ namespace {
using Tellico::SourceListViewItem;
using Tellico::ConfigDialog;
-SourceListViewItem::SourceListViewItem(KListView* tqparent_, const GeneralFetcherInfo& info_,
+SourceListViewItem::SourceListViewItem(KListView* parent_, const GeneralFetcherInfo& info_,
const TQString& groupName_)
- : KListViewItem(tqparent_, info_.name), m_info(info_),
+ : KListViewItem(parent_, info_.name), m_info(info_),
m_configGroup(groupName_), m_newSource(groupName_.isNull()), m_fetcher(0) {
TQPixmap pix = Fetch::Manager::fetcherIcon(info_.type);
if(!pix.isNull()) {
@@ -81,9 +81,9 @@ SourceListViewItem::SourceListViewItem(KListView* tqparent_, const GeneralFetche
}
}
-SourceListViewItem::SourceListViewItem(KListView* tqparent_, TQListViewItem* after_,
+SourceListViewItem::SourceListViewItem(KListView* parent_, TQListViewItem* after_,
const GeneralFetcherInfo& info_, const TQString& groupName_)
- : KListViewItem(tqparent_, after_, info_.name), m_info(info_),
+ : KListViewItem(parent_, after_, info_.name), m_info(info_),
m_configGroup(groupName_), m_newSource(groupName_.isNull()), m_fetcher(0) {
TQPixmap pix = Fetch::Manager::fetcherIcon(info_.type);
if(!pix.isNull()) {
@@ -99,9 +99,9 @@ void SourceListViewItem::setFetcher(Fetch::Fetcher::Ptr fetcher) {
}
}
-ConfigDialog::ConfigDialog(TQWidget* tqparent_, const char* name_/*=0*/)
+ConfigDialog::ConfigDialog(TQWidget* parent_, const char* name_/*=0*/)
: KDialogBase(IconList, i18n("Configure Tellico"), Help|Ok|Apply|Cancel|Default,
- Ok, tqparent_, name_, true, false)
+ Ok, parent_, name_, true, false)
, m_modifying(false)
, m_okClicked(false) {
setupGeneralPage();