diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-28 18:11:49 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-03 19:23:45 +0900 |
commit | 0bd9d5459891e6fb17ee6802878f85e217cb9f54 (patch) | |
tree | 962f6ea26d1fab041fe3476fbbd64132ab8ada1b /kspread/dialogs/kspread_dlg_csv.cpp | |
parent | cb258b7e39ffa5662b57e7d9006e69172a378d7e (diff) | |
download | koffice-r14.1.4.tar.gz koffice-r14.1.4.zip |
Replace TRUE/FALSE with boolean values true/falser14.1.4
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit cf85b9c285a2b9baa87c9d0cb9d683b48e82a475)
Diffstat (limited to 'kspread/dialogs/kspread_dlg_csv.cpp')
-rw-r--r-- | kspread/dialogs/kspread_dlg_csv.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kspread/dialogs/kspread_dlg_csv.cpp b/kspread/dialogs/kspread_dlg_csv.cpp index a93db2281..893c3c726 100644 --- a/kspread/dialogs/kspread_dlg_csv.cpp +++ b/kspread/dialogs/kspread_dlg_csv.cpp @@ -63,7 +63,7 @@ CSVDialog::CSVDialog( View * parent, const char * name, TQRect const & rect, Mod if ( !name ) setName( "CSV" ); - setSizeGripEnabled( TRUE ); + setSizeGripEnabled( true ); TQWidget* page = new TQWidget( this ); setMainWidget( page ); @@ -102,7 +102,7 @@ CSVDialog::CSVDialog( View * parent, const char * name, TQRect const & rect, Mod m_radioComma = new TQRadioButton( m_delimiterBox, "m_radioComma" ); m_radioComma->setText( i18n( "Comma" ) ); - m_radioComma->setChecked( TRUE ); + m_radioComma->setChecked( true ); m_delimiterBoxLayout->addWidget( m_radioComma, 0, 0 ); m_radioSemicolon = new TQRadioButton( m_delimiterBox, "m_radioSemicolon" ); @@ -144,7 +144,7 @@ CSVDialog::CSVDialog( View * parent, const char * name, TQRect const & rect, Mod m_radioText = new TQRadioButton( m_formatBox, "m_radioText" ); m_radioText->setText( i18n( "Text" ) ); - m_radioText->setChecked( TRUE ); + m_radioText->setChecked( true ); m_formatBoxLayout->addWidget( m_radioText, 0, 0 ); m_radioCurrency = new TQRadioButton( m_formatBox, "m_radioCurrency" ); @@ -155,13 +155,13 @@ CSVDialog::CSVDialog( View * parent, const char * name, TQRect const & rect, Mod m_radioDate->setText( i18n( "Date" ) ); m_formatBoxLayout->addWidget( m_radioDate, 1, 2 ); - m_comboLine = new TQComboBox( FALSE, page, "m_comboLine" ); + m_comboLine = new TQComboBox( false, page, "m_comboLine" ); m_comboLine->insertItem( i18n( "1" ) ); m_comboLine->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)1, (TQSizePolicy::SizeType)0, 0, 0, m_comboLine->sizePolicy().hasHeightForWidth() ) ); MyDialogLayout->addWidget( m_comboLine, 1, 3 ); - m_comboQuote = new TQComboBox( FALSE, page, "m_comboQuote" ); + m_comboQuote = new TQComboBox( false, page, "m_comboQuote" ); m_comboQuote->insertItem( i18n( "\"" ) ); m_comboQuote->insertItem( i18n( "'" ) ); m_comboQuote->insertItem( i18n( "None" ) ); |