diff options
author | Michele Calgaro <[email protected]> | 2024-01-02 11:38:29 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-02 11:38:29 +0900 |
commit | 269551cf8e80ed83b626bb793f0f9f15b5f2809c (patch) | |
tree | 8acb279ab4af2e99e4db20e28ddd8fc1148a63f1 /plugins/gui-quickbar | |
parent | 887adb8a4498cf2537919d863a2554e4be379249 (diff) | |
download | tderadio-269551cf8e80ed83b626bb793f0f9f15b5f2809c.tar.gz tderadio-269551cf8e80ed83b626bb793f0f9f15b5f2809c.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'plugins/gui-quickbar')
-rw-r--r-- | plugins/gui-quickbar/quickbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gui-quickbar/quickbar.cpp b/plugins/gui-quickbar/quickbar.cpp index d8bba88..df9a299 100644 --- a/plugins/gui-quickbar/quickbar.cpp +++ b/plugins/gui-quickbar/quickbar.cpp @@ -280,7 +280,7 @@ void QuickBar::rebuildGUI() m_layout->setSpacing(2); m_buttonGroup = new TQButtonGroup(this); - TQObject::connect (m_buttonGroup, TQT_SIGNAL(clicked(int)), this, TQT_SLOT(buttonClicked(int))); + TQObject::connect (m_buttonGroup, TQ_SIGNAL(clicked(int)), this, TQ_SLOT(buttonClicked(int))); // we use buttonGroup to enable automatic toggle/untoggle m_buttonGroup->setExclusive(true); m_buttonGroup->setFrameStyle(TQFrame::NoFrame); |