From feaf6d62da1685a34fbc8c201f31da681f04e2a7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jul 2011 02:23:29 +0000 Subject: Remove the tq in front of these incorrectly TQt4-converted methods/data members: tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/configdialog.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/configdialog.cpp') 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(); -- cgit v1.2.3