diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 04766b207afba7961d4d802313e426f5a2fbef63 (patch) | |
tree | c888ea1027c793e2d0386a7e5a1a0cd077b03cb3 /karbon/dialogs/vconfiguredlg.cc | |
parent | b6edfe41c9395f2e20784cbf0e630af6426950a3 (diff) | |
download | koffice-04766b207afba7961d4d802313e426f5a2fbef63.tar.gz koffice-04766b207afba7961d4d802313e426f5a2fbef63.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karbon/dialogs/vconfiguredlg.cc')
-rw-r--r-- | karbon/dialogs/vconfiguredlg.cc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/karbon/dialogs/vconfiguredlg.cc b/karbon/dialogs/vconfiguredlg.cc index ba86b313..141006dc 100644 --- a/karbon/dialogs/vconfiguredlg.cc +++ b/karbon/dialogs/vconfiguredlg.cc @@ -43,29 +43,29 @@ #include "vconfiguredlg.h" -VConfigureDlg::VConfigureDlg( KarbonView* tqparent ) +VConfigureDlg::VConfigureDlg( KarbonView* parent ) : KDialogBase( KDialogBase::IconList, i18n( "Configure" ), KDialogBase::Ok | KDialogBase::Apply | KDialogBase::Cancel | KDialogBase::Default, - KDialogBase::Ok, tqparent ) + KDialogBase::Ok, parent ) { TQVBox * page = addVBoxPage( i18n( "Interface" ), i18n( "Interface" ), BarIcon( "misc", KIcon::SizeMedium ) ); - m_interfacePage = new VConfigInterfacePage( tqparent, page ); + m_interfacePage = new VConfigInterfacePage( parent, page ); page = addVBoxPage( i18n( "Misc" ), i18n( "Misc" ), BarIcon( "misc", KIcon::SizeMedium ) ); - m_miscPage = new VConfigMiscPage( tqparent, page ); + m_miscPage = new VConfigMiscPage( parent, page ); page = addVBoxPage( i18n( "Grid" ), i18n( "Grid" ), BarIcon( "grid", KIcon::SizeMedium ) ); - m_gridPage = new VConfigGridPage( tqparent, page ); + m_gridPage = new VConfigGridPage( parent, page ); connect( m_miscPage, TQT_SIGNAL( unitChanged( int ) ), m_gridPage, TQT_SLOT( slotUnitChanged( int ) ) ); @@ -73,7 +73,7 @@ VConfigureDlg::VConfigureDlg( KarbonView* tqparent ) i18n( "Document" ), i18n( "Document Settings" ), BarIcon( "document", KIcon::SizeMedium ) ); - m_defaultDocPage = new VConfigDefaultPage( tqparent, page ); + m_defaultDocPage = new VConfigDefaultPage( parent, page ); connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( slotApply() ) ); } @@ -105,7 +105,7 @@ void VConfigureDlg::slotDefault() VConfigInterfacePage::VConfigInterfacePage( KarbonView* view, TQVBox* box, char* name ) - : TQObject( box->tqparent(), name ) + : TQObject( box->parent(), name ) { m_view = view; m_config = KarbonFactory::instance()->config(); @@ -210,7 +210,7 @@ void VConfigInterfacePage::slotDefault() VConfigMiscPage::VConfigMiscPage( KarbonView* view, TQVBox* box, char* name ) - : TQObject( box->tqparent(), name ) + : TQObject( box->parent(), name ) { m_view = view; m_config = KarbonFactory::instance()->config(); @@ -283,7 +283,7 @@ void VConfigMiscPage::slotDefault() } VConfigGridPage::VConfigGridPage( KarbonView* view, TQVBox* page, char* name ) - : TQObject( page->tqparent(), name ) + : TQObject( page->parent(), name ) { m_view = view; KoUnit::Unit unit = view->part()->document().unit(); @@ -378,7 +378,7 @@ void VConfigGridPage::slotDefault() VConfigDefaultPage::VConfigDefaultPage( KarbonView* view, TQVBox* box, char* name ) - : TQObject( box->tqparent(), name ) + : TQObject( box->parent(), name ) { m_view = view; |