summaryrefslogtreecommitdiffstats
path: root/tdeui/tdepopupmenu.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-12 11:17:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-15 11:09:32 +0900
commit7f03918f8df7479b0e1a88288066201a301e87bf (patch)
treeef42e0c7ecbd6d292ca5aa7f3aeca141dd65cdb1 /tdeui/tdepopupmenu.cpp
parentccaaecf59c0e607be633c45ad3b7bb1ef29e981f (diff)
downloadtdelibs-7f03918f8df7479b0e1a88288066201a301e87bf.tar.gz
tdelibs-7f03918f8df7479b0e1a88288066201a301e87bf.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit ba3b5b77e1a430dc7197df20872ba46ce2fb6fa7)
Diffstat (limited to 'tdeui/tdepopupmenu.cpp')
-rw-r--r--tdeui/tdepopupmenu.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/tdeui/tdepopupmenu.cpp b/tdeui/tdepopupmenu.cpp
index 453a3e41f..5195c64a8 100644
--- a/tdeui/tdepopupmenu.cpp
+++ b/tdeui/tdepopupmenu.cpp
@@ -164,7 +164,7 @@ TDEPopupMenu::TDEPopupMenu(TQWidget *parent, const char *name)
{
d = new TDEPopupMenuPrivate;
resetKeyboardVars();
- connect(&(d->clearTimer), TQT_SIGNAL(timeout()), TQT_SLOT(resetKeyboardVars()));
+ connect(&(d->clearTimer), TQ_SIGNAL(timeout()), TQ_SLOT(resetKeyboardVars()));
}
TDEPopupMenu::~TDEPopupMenu()
@@ -514,7 +514,7 @@ TQPopupMenu* TDEPopupMenu::contextMenu()
if (!d->m_ctxMenu)
{
d->m_ctxMenu = new TQPopupMenu(this);
- connect(d->m_ctxMenu, TQT_SIGNAL(aboutToHide()), this, TQT_SLOT(ctxMenuHiding()));
+ connect(d->m_ctxMenu, TQ_SIGNAL(aboutToHide()), this, TQ_SLOT(ctxMenuHiding()));
}
return d->m_ctxMenu;
@@ -559,7 +559,7 @@ void TDEPopupMenu::showCtxMenu(TQPoint pos)
TQPopupMenu* subMenu = item->popup();
if (subMenu)
{
- disconnect(subMenu, TQT_SIGNAL(aboutToShow()), this, TQT_SLOT(ctxMenuHideShowingMenu()));
+ disconnect(subMenu, TQ_SIGNAL(aboutToShow()), this, TQ_SLOT(ctxMenuHideShowingMenu()));
}
}
@@ -576,8 +576,8 @@ void TDEPopupMenu::showCtxMenu(TQPoint pos)
TQPopupMenu* subMenu = findItem(TDEPopupMenuPrivate::s_highlightedItem)->popup();
if (subMenu)
{
- connect(subMenu, TQT_SIGNAL(aboutToShow()), TQT_SLOT(ctxMenuHideShowingMenu()));
- TQTimer::singleShot(100, subMenu, TQT_SLOT(hide()));
+ connect(subMenu, TQ_SIGNAL(aboutToShow()), TQ_SLOT(ctxMenuHideShowingMenu()));
+ TQTimer::singleShot(100, subMenu, TQ_SLOT(hide()));
}
if (!TDEPopupMenuPrivate::s_continueCtxMenuShow)
@@ -588,7 +588,7 @@ void TDEPopupMenu::showCtxMenu(TQPoint pos)
TDEPopupMenuPrivate::s_contextedMenu = this;
d->m_ctxMenu->popup(this->mapToGlobal(pos));
- connect(this, TQT_SIGNAL(highlighted(int)), this, TQT_SLOT(itemHighlighted(int)));
+ connect(this, TQ_SIGNAL(highlighted(int)), this, TQ_SLOT(itemHighlighted(int)));
}
/*
@@ -603,7 +603,7 @@ void TDEPopupMenu::ctxMenuHideShowingMenu()
TQPopupMenu* subMenu = item->popup();
if (subMenu)
{
- TQTimer::singleShot(0, subMenu, TQT_SLOT(hide()));
+ TQTimer::singleShot(0, subMenu, TQ_SLOT(hide()));
}
}
}
@@ -615,11 +615,11 @@ void TDEPopupMenu::ctxMenuHiding()
TQPopupMenu* subMenu = findItem(TDEPopupMenuPrivate::s_highlightedItem)->popup();
if (subMenu)
{
- disconnect(subMenu, TQT_SIGNAL(aboutToShow()), this, TQT_SLOT(ctxMenuHideShowingMenu()));
+ disconnect(subMenu, TQ_SIGNAL(aboutToShow()), this, TQ_SLOT(ctxMenuHideShowingMenu()));
}
}
- disconnect(this, TQT_SIGNAL(highlighted(int)), this, TQT_SLOT(itemHighlighted(int)));
+ disconnect(this, TQ_SIGNAL(highlighted(int)), this, TQ_SLOT(itemHighlighted(int)));
TDEPopupMenuPrivate::s_continueCtxMenuShow = true;
}