diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-14 12:33:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-16 19:01:53 +0900 |
commit | b0f8eef013163b2098c2bb07e93cb9b194338b80 (patch) | |
tree | c35221250699030822f3c616b393f77e1ce47036 /korganizer/koeditordetails.cpp | |
parent | c2138cbe92142437d50f2e6cec6f8909da959234 (diff) | |
download | tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.tar.gz tdepim-b0f8eef013163b2098c2bb07e93cb9b194338b80.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3b3f9ec8f31978030c17309fae48335bea5c1587)
Diffstat (limited to 'korganizer/koeditordetails.cpp')
-rw-r--r-- | korganizer/koeditordetails.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/koeditordetails.cpp b/korganizer/koeditordetails.cpp index 95d211762..9d570f168 100644 --- a/korganizer/koeditordetails.cpp +++ b/korganizer/koeditordetails.cpp @@ -208,17 +208,17 @@ KOEditorDetails::KOEditorDetails( int spacing, TQWidget *parent, mListView->setFixedHeight( 78 ); } - connect( mListView, TQT_SIGNAL( selectionChanged( TQListViewItem * ) ), - TQT_SLOT( updateAttendeeInput() ) ); + connect( mListView, TQ_SIGNAL( selectionChanged( TQListViewItem * ) ), + TQ_SLOT( updateAttendeeInput() ) ); #ifndef KORG_NODND - connect( mListView, TQT_SIGNAL( dropped( Attendee * ) ), - TQT_SLOT( slotInsertAttendee( Attendee * ) ) ); + connect( mListView, TQ_SIGNAL( dropped( Attendee * ) ), + TQ_SLOT( slotInsertAttendee( Attendee * ) ) ); #endif topLayout->addWidget( mListView ); initEditWidgets( this, topLayout ); - connect( mRemoveButton, TQT_SIGNAL(clicked()), TQT_SLOT(removeAttendee()) ); + connect( mRemoveButton, TQ_SIGNAL(clicked()), TQ_SLOT(removeAttendee()) ); updateAttendeeInput(); } |