summaryrefslogtreecommitdiffstats
path: root/kword/KWInsertPageDia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kword/KWInsertPageDia.cpp')
-rw-r--r--kword/KWInsertPageDia.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kword/KWInsertPageDia.cpp b/kword/KWInsertPageDia.cpp
index 97fb081d4..129ee6a1a 100644
--- a/kword/KWInsertPageDia.cpp
+++ b/kword/KWInsertPageDia.cpp
@@ -28,17 +28,17 @@
#include <tqvbox.h>
KWInsertPageDia::KWInsertPageDia( TQWidget *parent, const char* name )
- : KDialogBase( parent, name,TRUE,i18n("Insert Page"),Ok|Cancel )
+ : KDialogBase( parent, name,true,i18n("Insert Page"),Ok|Cancel )
{
TQVBox *page = makeVBoxMainWidget();
TQButtonGroup *grp = new TQButtonGroup( 1, TQt::Horizontal, i18n( "Insert Page" ),page );
- grp->setRadioButtonExclusive( TRUE );
+ grp->setRadioButtonExclusive( true );
grp->layout();
m_after = new TQRadioButton( i18n("After"), grp );
m_before = new TQRadioButton( i18n("Before"), grp );
- grp->setRadioButtonExclusive( TRUE );
+ grp->setRadioButtonExclusive( true );
m_after->setChecked( true );
resize( 200, 150 );
setFocus();