summaryrefslogtreecommitdiffstats
path: root/src/entrywidgetpublication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/entrywidgetpublication.cpp')
-rw-r--r--src/entrywidgetpublication.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/entrywidgetpublication.cpp b/src/entrywidgetpublication.cpp
index d68dcde..09f6c7c 100644
--- a/src/entrywidgetpublication.cpp
+++ b/src/entrywidgetpublication.cpp
@@ -255,7 +255,7 @@ namespace KBibTeX
void EntryWidgetPublication::updateWarnings( BibTeX::Entry::EntryType entryType, TQListView *listViewWarnings )
{
- bool crossRefValid = FALSE;
+ bool crossRefValid = false;
BibTeX::Value *value = NULL;
addMissingWarning( entryType, BibTeX::EntryField::ftHowPublished, m_fieldLineEditHowPublished->caption(), !m_fieldLineEditHowPublished->isEmpty(), m_fieldLineEditHowPublished, listViewWarnings );
@@ -471,7 +471,7 @@ namespace KBibTeX
m_fieldLineEditCrossRef->setFieldType( BibTeX::EntryField::ftCrossRef );
label->setBuddy( m_fieldLineEditCrossRef );
gridLayout->addWidget( m_fieldLineEditCrossRef, 8, 1 );
- connect( m_fieldLineEditCrossRef, SIGNAL( textChanged() ), this, SLOT( slotSetCrossRefEntry() ) );
+ connect( m_fieldLineEditCrossRef, TQ_SIGNAL( textChanged() ), this, TQ_SLOT( slotSetCrossRefEntry() ) );
label = new TQLabel( TQString( "%1:" ).arg( i18n( "Organization" ) ), this );
gridLayout->addWidget( label, 0, 3 );
@@ -528,7 +528,7 @@ namespace KBibTeX
m_fieldLineEditISBN ->setFieldType( BibTeX::EntryField::ftISBN );
label->setBuddy( m_fieldLineEditISBN );
innerLayout->addWidget( m_fieldLineEditISBN );
- connect( m_pushButtonISBN, SIGNAL( clicked() ), this, SLOT( slotOpenISBN() ) );
+ connect( m_pushButtonISBN, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotOpenISBN() ) );
label = new TQLabel( TQString( "%1:" ).arg( i18n( "ISSN" ) ), this );
gridLayout->addWidget( label, 7, 3 );
@@ -548,7 +548,7 @@ namespace KBibTeX
for ( int i = 0; i < 12; i++ )
menuMonths->insertItem( BibTeX::Months[ i ], i );
m_pushButtonMonths->setPopup( menuMonths );
- connect( menuMonths, SIGNAL( activated( int ) ), this, SLOT( slotSetMonth( int ) ) );
+ connect( menuMonths, TQ_SIGNAL( activated( int ) ), this, TQ_SLOT( slotSetMonth( int ) ) );
}
TQString EntryWidgetPublication::isbn() const