summaryrefslogtreecommitdiffstats
path: root/kmail/simplestringlisteditor.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 12:33:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 12:43:48 +0900
commit3b3f9ec8f31978030c17309fae48335bea5c1587 (patch)
tree0b493383a1501860371aacd792ec6fc08d595824 /kmail/simplestringlisteditor.cpp
parent99e6e1d1f43610c3573e9824a2a8a38f69930cd0 (diff)
downloadtdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.tar.gz
tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmail/simplestringlisteditor.cpp')
-rw-r--r--kmail/simplestringlisteditor.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/kmail/simplestringlisteditor.cpp b/kmail/simplestringlisteditor.cpp
index c37ea13f..c62b73ae 100644
--- a/kmail/simplestringlisteditor.cpp
+++ b/kmail/simplestringlisteditor.cpp
@@ -87,8 +87,8 @@ SimpleStringListEditor::SimpleStringListEditor( TQWidget * parent,
mAddButton = new TQPushButton( addLabel, this );
mAddButton->setAutoDefault( false );
vlay->addWidget( mAddButton );
- connect( mAddButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotAdd()) );
+ connect( mAddButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotAdd()) );
}
if ( buttons & Remove ) {
@@ -99,8 +99,8 @@ SimpleStringListEditor::SimpleStringListEditor( TQWidget * parent,
mRemoveButton->setAutoDefault( false );
mRemoveButton->setEnabled( false ); // no selection yet
vlay->addWidget( mRemoveButton );
- connect( mRemoveButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotRemove()) );
+ connect( mRemoveButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotRemove()) );
}
if ( buttons & Modify ) {
@@ -111,10 +111,10 @@ SimpleStringListEditor::SimpleStringListEditor( TQWidget * parent,
mModifyButton->setAutoDefault( false );
mModifyButton->setEnabled( false ); // no selection yet
vlay->addWidget( mModifyButton );
- connect( mModifyButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotModify()) );
- connect( mListBox, TQT_SIGNAL( doubleClicked( TQListBoxItem* ) ),
- this, TQT_SLOT( slotModify() ) );
+ connect( mModifyButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotModify()) );
+ connect( mListBox, TQ_SIGNAL( doubleClicked( TQListBoxItem* ) ),
+ this, TQ_SLOT( slotModify() ) );
}
if ( buttons & Up ) {
@@ -126,8 +126,8 @@ SimpleStringListEditor::SimpleStringListEditor( TQWidget * parent,
mUpButton->setAutoDefault( false );
mUpButton->setEnabled( false ); // no selection yet
vlay->addWidget( mUpButton );
- connect( mUpButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotUp()) );
+ connect( mUpButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotUp()) );
}
if ( buttons & Down ) {
@@ -139,14 +139,14 @@ SimpleStringListEditor::SimpleStringListEditor( TQWidget * parent,
mDownButton->setAutoDefault( false );
mDownButton->setEnabled( false ); // no selection yet
vlay->addWidget( mDownButton );
- connect( mDownButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotDown()) );
+ connect( mDownButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotDown()) );
}
vlay->addStretch( 1 ); // spacer
- connect( mListBox, TQT_SIGNAL(selectionChanged()),
- this, TQT_SLOT(slotSelectionChanged()) );
+ connect( mListBox, TQ_SIGNAL(selectionChanged()),
+ this, TQ_SLOT(slotSelectionChanged()) );
}
void SimpleStringListEditor::setStringList( const TQStringList & strings ) {