diff options
-rw-r--r-- | krename/batchrenamer.cpp | 6 | ||||
-rw-r--r-- | krename/helpdialog.cpp | 2 | ||||
-rw-r--r-- | krename/helpdialog.h | 2 | ||||
-rw-r--r-- | krename/kmylistbox.cpp | 6 | ||||
-rw-r--r-- | krename/krenameimpl.cpp | 4 | ||||
-rw-r--r-- | krename/permission.cpp | 8 |
6 files changed, 14 insertions, 14 deletions
diff --git a/krename/batchrenamer.cpp b/krename/batchrenamer.cpp index 80e380e..c652a90 100644 --- a/krename/batchrenamer.cpp +++ b/krename/batchrenamer.cpp @@ -440,7 +440,7 @@ TQString BatchRenamer::findNumbers( TQString text, int count, int i ) countervalues.start = m_index; countervalues.step = m_step; - if( text.contains( "#", FALSE ) <= 0 ) + if( text.contains( "#", false ) <= 0 ) return text; pos = text.find("#", pos); @@ -538,10 +538,10 @@ TQString BatchRenamer::findBrackets( TQString oldname, TQString text, int i ) int num, pos = -1, a; TQString token; - if( text.contains("]", FALSE) <= 0 || text.isEmpty() ) + if( text.contains("]", false) <= 0 || text.isEmpty() ) return text; - num = text.contains("[", FALSE); + num = text.contains("[", false); if(num <= 0 ) return text; diff --git a/krename/helpdialog.cpp b/krename/helpdialog.cpp index a04f399..189664c 100644 --- a/krename/helpdialog.cpp +++ b/krename/helpdialog.cpp @@ -74,7 +74,7 @@ HelpDialog::HelpDialog( HelpDialogData* data, TQWidget* parent, setCaption( i18n( "Help" ) ); HelpDialogLayout = new TQVBoxLayout( this, 11, 6, "HelpDialogLayout"); - comboHeadline = new TQComboBox( FALSE, this, "comboHeadline" ); + comboHeadline = new TQComboBox( false, this, "comboHeadline" ); HelpDialogLayout->addWidget( comboHeadline ); list = new TDEListView( this, "list" ); diff --git a/krename/helpdialog.h b/krename/helpdialog.h index 75865b1..d15301e 100644 --- a/krename/helpdialog.h +++ b/krename/helpdialog.h @@ -78,7 +78,7 @@ class HelpDialog : public TQDialog public: HelpDialog( HelpDialogData* data, TQWidget* parent = 0, - const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); + const char* name = 0, bool modal = false, WFlags fl = 0 ); ~HelpDialog(); inline void setLineEdit( TQLineEdit* lineedit ); diff --git a/krename/kmylistbox.cpp b/krename/kmylistbox.cpp index abd3e26..cfca687 100644 --- a/krename/kmylistbox.cpp +++ b/krename/kmylistbox.cpp @@ -206,7 +206,7 @@ void KMyListBox::viewportMousePressEvent( TQMouseEvent* e ) TQListBoxItem *i = itemAt( p ); if ( i ) { presspos = e->pos(); - mousePressed = TRUE; + mousePressed = true; } } } @@ -214,7 +214,7 @@ void KMyListBox::viewportMousePressEvent( TQMouseEvent* e ) void KMyListBox::viewportMouseMoveEvent( TQMouseEvent* e ) { if ( mousePressed && ( presspos - e->pos() ).manhattanLength() > TDEApplication::startDragDistance() ) { - mousePressed = FALSE; + mousePressed = false; TQListBoxItem *item = itemAt( presspos ); if ( item ) { TQStringList source = text( index( item ) ); @@ -231,7 +231,7 @@ void KMyListBox::viewportMouseMoveEvent( TQMouseEvent* e ) void KMyListBox::viewportMouseReleaseEvent( TQMouseEvent* e ) { - mousePressed = FALSE; + mousePressed = false; TDEListBox::viewportMouseReleaseEvent( e ); } diff --git a/krename/krenameimpl.cpp b/krename/krenameimpl.cpp index 5adf727..ba0f678 100644 --- a/krename/krenameimpl.cpp +++ b/krename/krenameimpl.cpp @@ -555,14 +555,14 @@ void KRenameImpl::setupFileTab1() labelDot->setText("<b>.</b>"); extemplate = new KMyHistoryCombo( true, tab, "ExTemplate" ); - extemplate->setEnabled( FALSE ); + extemplate->setEnabled( false ); buttonHelp = new KPushButton( i18n("&Functions..."), tab ); buttonHelp->setIconSet( SmallIcon("help") ); checkExtension = new TQCheckBox( tab ); checkExtension->setText( i18n( "&Use extension of the input file" ) ); - checkExtension->setChecked( TRUE ); + checkExtension->setChecked( true ); comboExtension = new KComboBox( false, tab ); diff --git a/krename/permission.cpp b/krename/permission.cpp index 512e485..c26c500 100644 --- a/krename/permission.cpp +++ b/krename/permission.cpp @@ -76,7 +76,7 @@ void MyPermPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l ) Layout0 = new TQVBoxLayout( 0, 0, 6 ); groupPermission = new TQGroupBox ( i18n("Access permissions"), w ); - groupPermission->setEnabled( FALSE ); + groupPermission->setEnabled( false ); gl = new TQGridLayout (groupPermission, 6, 6, 15); gl->addRowSpacing(0, 10); @@ -125,17 +125,17 @@ void MyPermPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l ) permBox[row][col] = cb; gl->addWidget (permBox[row][col], row+2, col+1); - permBox[row][0]->setChecked( TRUE ); + permBox[row][0]->setChecked( true ); } } - permBox[0][1]->setChecked( TRUE ); + permBox[0][1]->setChecked( true ); gl->setColStretch(6, 10); checkOwner = new TQCheckBox( i18n("Change &Owner"), w ); groupOwner = new TQGroupBox ( i18n("Ownership"), w ); - groupOwner->setEnabled( FALSE ); + groupOwner->setEnabled( false ); groupOwner->setColumnLayout(0, TQt::Vertical ); groupOwner->layout()->setSpacing( 6 ); groupOwner->layout()->setMargin( 11 ); |