diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/queryresultsmenu.cpp | |
parent | d399e3a2c6c365c540fe67bc648bacefe4cca707 (diff) | |
download | kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
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); } /** |