From 3b3f9ec8f31978030c17309fae48335bea5c1587 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 14 Jan 2024 12:33:20 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- korganizer/koincidenceeditor.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'korganizer/koincidenceeditor.cpp') diff --git a/korganizer/koincidenceeditor.cpp b/korganizer/koincidenceeditor.cpp index 40851e994..499a4580c 100644 --- a/korganizer/koincidenceeditor.cpp +++ b/korganizer/koincidenceeditor.cpp @@ -75,8 +75,8 @@ KOIncidenceEditor::KOIncidenceEditor( const TQString &caption, setButtonText( Default, i18n("&Templates...") ); } - connect( this, TQT_SIGNAL( defaultClicked() ), TQT_SLOT( slotManageTemplates() ) ); - connect( this, TQT_SIGNAL( finished() ), TQT_SLOT( delayedDestruct() ) ); + connect( this, TQ_SIGNAL( defaultClicked() ), TQ_SLOT( slotManageTemplates() ) ); + connect( this, TQ_SIGNAL( finished() ), TQ_SLOT( delayedDestruct() ) ); } KOIncidenceEditor::~KOIncidenceEditor() @@ -139,12 +139,12 @@ void KOIncidenceEditor::slotManageTemplates() kdDebug(5850) << "KOIncidenceEditor::manageTemplates()" << endl; TemplateManagementDialog * const d = new TemplateManagementDialog( this, templates() ); - connect( d, TQT_SIGNAL( loadTemplate( const TQString& ) ), - this, TQT_SLOT( slotLoadTemplate( const TQString& ) ) ); - connect( d, TQT_SIGNAL( templatesChanged( const TQStringList& ) ), - this, TQT_SLOT( slotTemplatesChanged( const TQStringList& ) ) ); - connect( d, TQT_SIGNAL( saveTemplate( const TQString& ) ), - this, TQT_SLOT( slotSaveTemplate( const TQString& ) ) ); + connect( d, TQ_SIGNAL( loadTemplate( const TQString& ) ), + this, TQ_SLOT( slotLoadTemplate( const TQString& ) ) ); + connect( d, TQ_SIGNAL( templatesChanged( const TQStringList& ) ), + this, TQ_SLOT( slotTemplatesChanged( const TQStringList& ) ) ); + connect( d, TQ_SIGNAL( saveTemplate( const TQString& ) ), + this, TQ_SLOT( slotSaveTemplate( const TQString& ) ) ); d->exec(); return; } @@ -296,8 +296,8 @@ void KOIncidenceEditor::setupEmbeddedURLPage( const TQString &label, topFrame ); topLayout->addWidget( wid ); mEmbeddedURLPages.append( topFrame ); - connect( wid, TQT_SIGNAL( openURL( const KURL & ) ) , - this, TQT_SLOT( openURL( const KURL & ) ) ); + connect( wid, TQ_SIGNAL( openURL( const KURL & ) ) , + this, TQ_SLOT( openURL( const KURL & ) ) ); // TODO: Call this method only when the tab is actually activated! wid->loadContents(); } -- cgit v1.2.1