diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:20:37 +0900 |
commit | b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/queryresultsmenu.cpp | |
parent | 3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff) | |
download | kscope-b035a6c4.tar.gz kscope-b035a6c4.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/queryresultsmenu.cpp')
-rw-r--r-- | src/queryresultsmenu.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
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); } /** |