From b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Dec 2023 16:37:45 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27) --- src/queryresultsmenu.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/queryresultsmenu.cpp') diff --git a/src/queryresultsmenu.cpp b/src/queryresultsmenu.cpp index 2446d12..4865d15 100644 --- a/src/queryresultsmenu.cpp +++ b/src/queryresultsmenu.cpp @@ -38,17 +38,17 @@ QueryResultsMenu::QueryResultsMenu(TQWidget* pParent, const char* szName) : m_pItem(NULL) { // Create the menu - insertItem(i18n("&View Source"), this, SLOT(slotViewSource()), 0, + insertItem(i18n("&View Source"), this, TQ_SLOT(slotViewSource()), 0, ViewSource); - insertItem(i18n("Find &Definition"), this, SLOT(slotFindDef()), 0, + insertItem(i18n("Find &Definition"), this, TQ_SLOT(slotFindDef()), 0, FindDef); insertSeparator(); - insertItem(i18n("&Copy"), this, SLOT(slotCopy()), 0, Copy); + insertItem(i18n("&Copy"), this, TQ_SLOT(slotCopy()), 0, Copy); insertSeparator(); - insertItem(i18n("&Filter..."), this, SLOT(slotFilter()), 0, Filter); - insertItem(i18n("&Show All"), this, SIGNAL(showAll()), 0, ShowAll); + insertItem(i18n("&Filter..."), this, TQ_SLOT(slotFilter()), 0, Filter); + insertItem(i18n("&Show All"), this, TQ_SIGNAL(showAll()), 0, ShowAll); insertSeparator(); - insertItem(i18n("&Remove Item"), this, SLOT(slotRemove()), 0, Remove); + insertItem(i18n("&Remove Item"), this, TQ_SLOT(slotRemove()), 0, Remove); } /** -- cgit v1.2.3