summaryrefslogtreecommitdiffstats
path: root/src/kile/kilelistselector.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit993281b03bb165b620668285531cc2a58083393b (patch)
treecec760f712cd20594b79fd52621860f461344fd4 /src/kile/kilelistselector.cpp
parente7943f0f55e7680153deace7e00370bb7d6a82c9 (diff)
downloadkile-993281b0.tar.gz
kile-993281b0.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kile@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kile/kilelistselector.cpp')
-rw-r--r--src/kile/kilelistselector.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kile/kilelistselector.cpp b/src/kile/kilelistselector.cpp
index 42af28d..205723a 100644
--- a/src/kile/kilelistselector.cpp
+++ b/src/kile/kilelistselector.cpp
@@ -28,8 +28,8 @@
//////////////////// KileListSelectorBase ////////////////////
-KileListSelectorBase::KileListSelectorBase(const TQStringList &list, const TQString &caption, const TQString &select, TQWidget *tqparent, const char *name) :
- KDialogBase( KDialogBase::Plain, caption, Ok|Cancel,Ok, tqparent, name, true, true )
+KileListSelectorBase::KileListSelectorBase(const TQStringList &list, const TQString &caption, const TQString &select, TQWidget *parent, const char *name) :
+ KDialogBase( KDialogBase::Plain, caption, Ok|Cancel,Ok, parent, name, true, true )
{
TQVBoxLayout *tqlayout = new TQVBoxLayout(plainPage());
@@ -82,7 +82,7 @@ void KileListSelectorBase::insertStringList(const TQStringList &list)
//////////////////// with single selection ////////////////////
-KileListSelector::KileListSelector(const TQStringList &list, const TQString &caption, const TQString &select, TQWidget *tqparent, const char *name) : KileListSelectorBase(list,caption,select,tqparent,name)
+KileListSelector::KileListSelector(const TQStringList &list, const TQString &caption, const TQString &select, TQWidget *parent, const char *name) : KileListSelectorBase(list,caption,select,parent,name)
{
m_listview->setSelectionMode(TQListView::Single);
@@ -92,7 +92,7 @@ KileListSelector::KileListSelector(const TQStringList &list, const TQString &cap
//////////////////// with multi selection ////////////////////
-KileListSelectorMultiple::KileListSelectorMultiple(const TQStringList &list, const TQString &caption, const TQString &select, TQWidget *tqparent, const char *name) : KileListSelectorBase(list,caption,select,tqparent,name)
+KileListSelectorMultiple::KileListSelectorMultiple(const TQStringList &list, const TQString &caption, const TQString &select, TQWidget *parent, const char *name) : KileListSelectorBase(list,caption,select,parent,name)
{
m_listview->setSelectionMode(TQListView::Extended); // default: Single
}