summaryrefslogtreecommitdiffstats
path: root/systemsettings/kcmultiwidget.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
commit79e6120f212414f059a40661108472987714d233 (patch)
tree9fa18a192565fea0e5f75214294853d954180540 /systemsettings/kcmultiwidget.cpp
parent07915c3e5524895d3745ba0815529b7eaa7e48bc (diff)
downloadtde-systemsettings-79e6120f212414f059a40661108472987714d233.tar.gz
tde-systemsettings-79e6120f212414f059a40661108472987714d233.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kde-systemsettings@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'systemsettings/kcmultiwidget.cpp')
-rw-r--r--systemsettings/kcmultiwidget.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/systemsettings/kcmultiwidget.cpp b/systemsettings/kcmultiwidget.cpp
index d7d1bd0..da4484f 100644
--- a/systemsettings/kcmultiwidget.cpp
+++ b/systemsettings/kcmultiwidget.cpp
@@ -62,18 +62,18 @@ class KCMultiWidget::KCMultiWidgetPrivate
};
-KCMultiWidget::KCMultiWidget(TQWidget *tqparent, const char *name, bool modal)
+KCMultiWidget::KCMultiWidget(TQWidget *parent, const char *name, bool modal)
: KDialogBase(IconList, i18n("Configure"), Help | Default |Cancel | Apply |
- Ok | User1 | User2 | User3, Ok, tqparent, name, modal, true,
+ Ok | User1 | User2 | User3, Ok, parent, name, modal, true,
KStdGuiItem::reset(), KStdGuiItem::close(), KStdGuiItem::adminMode())
, dialogface( IconList ), d( new KCMultiWidgetPrivate )
{
init();
}
-KCMultiWidget::KCMultiWidget( int dialogFace, TQWidget * tqparent, const char * name, bool modal )
+KCMultiWidget::KCMultiWidget( int dialogFace, TQWidget * parent, const char * name, bool modal )
: KDialogBase( dialogFace, "Caption", Help | Default | Cancel | Apply | Ok |
- User1 | User2 | User3, Ok, tqparent, name, modal, true,
+ User1 | User2 | User3, Ok, parent, name, modal, true,
KStdGuiItem::reset(), KStdGuiItem::close(), KStdGuiItem::adminMode())
, dialogface( dialogFace ), d( new KCMultiWidgetPrivate )
{
@@ -111,7 +111,7 @@ void KCMultiWidget::slotDefault()
ModuleList::Iterator end = m_modules.end();
for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it )
- if( pageIndex( ( TQWidget * )( *it ).kcm->tqparent() ) == curPageIndex )
+ if( pageIndex( ( TQWidget * )( *it ).kcm->parent() ) == curPageIndex )
{
( *it ).kcm->defaults();
clientChanged( true );
@@ -126,7 +126,7 @@ void KCMultiWidget::slotUser1()
ModuleList::Iterator end = m_modules.end();
for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it )
- if( pageIndex( ( TQWidget * )( *it ).kcm->tqparent() ) == curPageIndex )
+ if( pageIndex( ( TQWidget * )( *it ).kcm->parent() ) == curPageIndex )
{
( *it ).kcm->load();
clientChanged( false );
@@ -186,7 +186,7 @@ void KCMultiWidget::slotHelp()
int curPageIndex = activePageIndex();
ModuleList::Iterator end = m_modules.end();
for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it )
- if( pageIndex( ( TQWidget * )( *it ).kcm->tqparent() ) == curPageIndex )
+ if( pageIndex( ( TQWidget * )( *it ).kcm->parent() ) == curPageIndex )
{
docPath = ( *it ).kcm->moduleInfo().docPath();
break;