diff options
author | Michele Calgaro <[email protected]> | 2024-01-14 12:33:20 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-16 19:01:53 +0900 |
commit | b0f8eef013163b2098c2bb07e93cb9b194338b80 (patch) | |
tree | c35221250699030822f3c616b393f77e1ce47036 /korganizer/korganizer_part.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 <[email protected]>
(cherry picked from commit 3b3f9ec8f31978030c17309fae48335bea5c1587)
Diffstat (limited to 'korganizer/korganizer_part.cpp')
-rw-r--r-- | korganizer/korganizer_part.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/korganizer/korganizer_part.cpp b/korganizer/korganizer_part.cpp index b318dc982..ab1b3c120 100644 --- a/korganizer/korganizer_part.cpp +++ b/korganizer/korganizer_part.cpp @@ -109,10 +109,10 @@ KOrganizerPart::KOrganizerPart( TQWidget *parentWidget, const char *widgetName, KParts::InfoExtension *ie = new KParts::InfoExtension( this, "KOrganizerInfo" ); - connect( mView, TQT_SIGNAL( incidenceSelected( Incidence *,const TQDate & ) ), - TQT_SLOT( slotChangeInfo( Incidence *,const TQDate & ) ) ); - connect( this, TQT_SIGNAL( textChanged( const TQString & ) ), - ie, TQT_SIGNAL( textChanged( const TQString & ) ) ); + connect( mView, TQ_SIGNAL( incidenceSelected( Incidence *,const TQDate & ) ), + TQ_SLOT( slotChangeInfo( Incidence *,const TQDate & ) ) ); + connect( this, TQ_SIGNAL( textChanged( const TQString & ) ), + ie, TQ_SIGNAL( textChanged( const TQString & ) ) ); mActionManager->init(); mActionManager->readSettings(); |