summaryrefslogtreecommitdiffstats
path: root/src/fieldlineedit.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-04 10:29:06 +0900
committerMichele Calgaro <[email protected]>2024-01-04 10:29:06 +0900
commit0a7295d1f8d11fd67a215215fa6a3ef1ad0e1b06 (patch)
tree81b7f7a223d7304c91fde7e1deed6e928889a58f /src/fieldlineedit.cpp
parent702a473bc0db41979506a1bd7e1e5be31fb861a5 (diff)
downloadkbibtex-0a7295d1f8d11fd67a215215fa6a3ef1ad0e1b06.tar.gz
kbibtex-0a7295d1f8d11fd67a215215fa6a3ef1ad0e1b06.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/fieldlineedit.cpp')
-rw-r--r--src/fieldlineedit.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fieldlineedit.cpp b/src/fieldlineedit.cpp
index 910ea12..43e99f1 100644
--- a/src/fieldlineedit.cpp
+++ b/src/fieldlineedit.cpp
@@ -227,7 +227,7 @@ namespace KBibTeX
m_pushButtonString->setToggleButton( TRUE );
TQToolTip::add( m_pushButtonString, TQString( i18n( "Set '%1' to be a string key" ) ).arg( m_caption ) );
m_pushButtonString->setEnabled( !m_isReadOnly );
- connect( m_pushButtonString, SIGNAL( clicked() ), this, SLOT( slotStringToggled() ) );
+ connect( m_pushButtonString, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotStringToggled() ) );
if ( subname != NULL )
{
@@ -238,7 +238,7 @@ namespace KBibTeX
m_pushButtonComplex->setIconSet( TQIconSet( SmallIcon( "format-justify-left" ) ) );
m_pushButtonComplex->setSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Minimum );
TQToolTip::add( m_pushButtonComplex, TQString( i18n( "Edit '%1' as a concatenated value" ) ).arg( m_caption ) );
- connect( m_pushButtonComplex, SIGNAL( clicked() ), this, SLOT( slotComplexClicked() ) );
+ connect( m_pushButtonComplex, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotComplexClicked() ) );
TQGridLayout * layout = NULL;
switch ( m_inputType )
@@ -353,15 +353,15 @@ namespace KBibTeX
{
case itSingleLine:
if ( enabled )
- connect( m_lineEdit, SIGNAL( textChanged( const TQString& ) ), this, SLOT( slotTextChanged( ) ) );
+ connect( m_lineEdit, TQ_SIGNAL( textChanged( const TQString& ) ), this, TQ_SLOT( slotTextChanged( ) ) );
else
- disconnect( m_lineEdit, SIGNAL( textChanged( const TQString& ) ), this, SLOT( slotTextChanged( ) ) );
+ disconnect( m_lineEdit, TQ_SIGNAL( textChanged( const TQString& ) ), this, TQ_SLOT( slotTextChanged( ) ) );
break;
case itMultiLine:
if ( enabled )
- connect( m_textEdit, SIGNAL( textChanged( ) ), this, SLOT( slotTextChanged( ) ) );
+ connect( m_textEdit, TQ_SIGNAL( textChanged( ) ), this, TQ_SLOT( slotTextChanged( ) ) );
else
- disconnect( m_textEdit, SIGNAL( textChanged( ) ), this, SLOT( slotTextChanged( ) ) );
+ disconnect( m_textEdit, TQ_SIGNAL( textChanged( ) ), this, TQ_SLOT( slotTextChanged( ) ) );
break;
}
}