diff options
Diffstat (limited to 'src/entrywidgetpublication.cpp')
-rw-r--r-- | src/entrywidgetpublication.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/entrywidgetpublication.cpp b/src/entrywidgetpublication.cpp index d68dcde..b23d2c8 100644 --- a/src/entrywidgetpublication.cpp +++ b/src/entrywidgetpublication.cpp @@ -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 |