From f03ddc53e2767bb7f88374996bb192275de12e51 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 5 Jan 2024 10:33:17 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac) --- src/sidebars.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/sidebars.cpp') diff --git a/src/sidebars.cpp b/src/sidebars.cpp index 7b65ff7..fd75e64 100644 --- a/src/sidebars.cpp +++ b/src/sidebars.cpp @@ -65,8 +65,8 @@ leftSidebar::leftSidebar(TQWidget* parent) : createPage(selectedIndex); - connect(m_pagesSelector, TQT_SIGNAL(activated(int)), - this, TQT_SLOT(createPage(int))); + connect(m_pagesSelector, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(createPage(int))); } leftSidebar::~leftSidebar() @@ -140,8 +140,8 @@ rightSidebar::rightSidebar(TQWidget* parent) : createPage(selectedIndex); - connect(m_pagesSelector, TQT_SIGNAL(activated(int)), - this, TQT_SLOT(createPage(int))); + connect(m_pagesSelector, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(createPage(int))); } rightSidebar::~rightSidebar() -- cgit v1.2.3