From e9d5585a3efa2fafce1a10dccc411ad2315732de Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 7 Jan 2024 19:46:19 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/app/historyAction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/app/historyAction.cpp') diff --git a/src/app/historyAction.cpp b/src/app/historyAction.cpp index 7ff421d..0c20264 100644 --- a/src/app/historyAction.cpp +++ b/src/app/historyAction.cpp @@ -46,8 +46,8 @@ HistoryCollection::HistoryCollection( TDEActionCollection *ac, TQObject *parent, , m_f( new HistoryAction( i18n( "Forward" ), "forward", TDEStdAccel::forward(), ac, "go_forward" ) ) , m_receiver( 0 ) { - connect( m_b, TQT_SIGNAL(activated()), TQT_SLOT(pop()) ); - connect( m_f, TQT_SIGNAL(activated()), TQT_SLOT(pop()) ); + connect( m_b, TQ_SIGNAL(activated()), TQ_SLOT(pop()) ); + connect( m_f, TQ_SIGNAL(activated()), TQ_SLOT(pop()) ); } void -- cgit v1.2.1