summaryrefslogtreecommitdiffstats
path: root/src/settingsfileio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/settingsfileio.cpp')
-rw-r--r--src/settingsfileio.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/settingsfileio.cpp b/src/settingsfileio.cpp
index c148435..4fe7e80 100644
--- a/src/settingsfileio.cpp
+++ b/src/settingsfileio.cpp
@@ -199,7 +199,7 @@ namespace KBibTeX
if ( m_comboBoxExportSystemHTML->count() == 0 )
{
m_comboBoxExportSystemHTML->insertItem( i18n( "No exporter available" ) );
- m_comboBoxExportSystemHTML->setEnabled( FALSE );
+ m_comboBoxExportSystemHTML->setEnabled( false );
}
m_checkBoxEmbedFiles->setChecked( settings->fileIO_EmbedFiles );
@@ -264,7 +264,7 @@ namespace KBibTeX
m_comboBoxLanguage = new TQComboBox( groupBox );
label->setBuddy( m_comboBoxLanguage );
label = new TQLabel( i18n( "&Biblography style:" ), groupBox );
- m_comboBoxBibliographyStyle = new TQComboBox( TRUE, groupBox );
+ m_comboBoxBibliographyStyle = new TQComboBox( true, groupBox );
label->setBuddy( m_comboBoxBibliographyStyle );
groupBox = new TQGroupBox( 1, Horizontal, i18n( "PDF Export" ), this );
@@ -288,12 +288,12 @@ namespace KBibTeX
containerLayout->setStretchFactor( buttonBib2Db5, 1 );
buttonBib2Db5->setIconSet( TQIconSet( SmallIcon( "folder_open" ) ) );
label->setBuddy( buttonBib2Db5 );
- connect( buttonBib2Db5, SIGNAL( clicked() ), this, SLOT( slotBib2db5BasePath() ) );
+ connect( buttonBib2Db5, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotBib2db5BasePath() ) );
groupBox = new TQGroupBox( 2, Horizontal, i18n( "Export Systems" ), this );
layout->addWidget( groupBox );
label = new TQLabel( i18n( "HTML:" ), groupBox );
- m_comboBoxExportSystemHTML = new TQComboBox( FALSE, groupBox );
+ m_comboBoxExportSystemHTML = new TQComboBox( false, groupBox );
label->setBuddy( m_comboBoxExportSystemHTML );
groupBox = new TQGroupBox( 1, Horizontal, i18n( "BibUtils" ), this );
@@ -329,12 +329,12 @@ namespace KBibTeX
bibList.sort();
m_comboBoxBibliographyStyle->insertStringList( bibList );
- connect( m_comboBoxEncoding, SIGNAL( activated( int ) ), this, SLOT( slotConfigChanged() ) );
- connect( m_comboBoxStringDelimiters, SIGNAL( activated( int ) ), this, SLOT( slotConfigChanged() ) );
- connect( m_comboBoxKeywordCasing, SIGNAL( activated( int ) ), this, SLOT( slotConfigChanged() ) );
- connect( m_comboBoxLanguage, SIGNAL( activated( int ) ), this, SLOT( slotConfigChanged() ) );
- connect( m_comboBoxBibliographyStyle, SIGNAL( activated( int ) ), this, SLOT( slotConfigChanged() ) );
- connect( m_comboBoxExportSystemHTML, SIGNAL( activated( int ) ), this, SLOT( slotConfigChanged() ) );
+ connect( m_comboBoxEncoding, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotConfigChanged() ) );
+ connect( m_comboBoxStringDelimiters, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotConfigChanged() ) );
+ connect( m_comboBoxKeywordCasing, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotConfigChanged() ) );
+ connect( m_comboBoxLanguage, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotConfigChanged() ) );
+ connect( m_comboBoxBibliographyStyle, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotConfigChanged() ) );
+ connect( m_comboBoxExportSystemHTML, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotConfigChanged() ) );
}
}