From 143ef5f55063d2879ed484a962d6e0c4373a5bc6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 1 Jan 2024 18:12:44 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 98f86ddadeb4f41b12e5735175951a7c5fec800b) --- src/debugoutputtextedit.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/debugoutputtextedit.cpp') diff --git a/src/debugoutputtextedit.cpp b/src/debugoutputtextedit.cpp index 2cd881b..ee2f442 100644 --- a/src/debugoutputtextedit.cpp +++ b/src/debugoutputtextedit.cpp @@ -40,10 +40,10 @@ DebugOutputTextEdit::~DebugOutputTextEdit() TQPopupMenu* DebugOutputTextEdit::createPopupMenu(const TQPoint &) { popup = new TQPopupMenu(this); - popup->insertItem(i18n("Cut Content"), this, TQT_SLOT(cut() ) ); - popup->insertItem(i18n("Copy Content"), this, TQT_SLOT(copy() ) ); + popup->insertItem(i18n("Cut Content"), this, TQ_SLOT(cut() ) ); + popup->insertItem(i18n("Copy Content"), this, TQ_SLOT(copy() ) ); popup->insertSeparator(); - popup->insertItem(i18n("Clear Log Window"), this, TQT_SLOT(clear() ) ); + popup->insertItem(i18n("Clear Log Window"), this, TQ_SLOT(clear() ) ); popup->insertSeparator(); return popup; -- cgit v1.2.3