diff options
Diffstat (limited to 'khexedit/printdialogpage.cpp')
-rw-r--r-- | khexedit/printdialogpage.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/khexedit/printdialogpage.cpp b/khexedit/printdialogpage.cpp index d421880..73efb45 100644 --- a/khexedit/printdialogpage.cpp +++ b/khexedit/printdialogpage.cpp @@ -102,8 +102,8 @@ void LayoutDialogPage::setupLayoutPage( void ) text = i18n("Draw h&eader above text"); mLayout.headerCheck = new TQCheckBox( text, this ); mLayout.headerCheck->setFixedSize( mLayout.headerCheck->sizeHint() ); - connect( mLayout.headerCheck, TQT_SIGNAL( toggled(bool)), - TQT_SLOT( slotDrawHeader(bool))); + connect( mLayout.headerCheck, TQ_SIGNAL( toggled(bool)), + TQ_SLOT( slotDrawHeader(bool))); topLayout->addWidget( mLayout.headerCheck, 0, AlignLeft ); gbox = new TQGridLayout( 5, 6, 0 ); @@ -164,8 +164,8 @@ void LayoutDialogPage::setupLayoutPage( void ) text = i18n("Draw &footer below text"); mLayout.footerCheck = new TQCheckBox( text, this ); mLayout.footerCheck->setFixedSize( mLayout.footerCheck->sizeHint() ); - connect( mLayout.footerCheck, TQT_SIGNAL( toggled(bool)), - TQT_SLOT( slotDrawFooter(bool))); + connect( mLayout.footerCheck, TQ_SIGNAL( toggled(bool)), + TQ_SLOT( slotDrawFooter(bool))); topLayout->addWidget( mLayout.footerCheck, 0, AlignLeft ); gbox = new TQGridLayout( 5, 6, 0 ); |