From ea1f5870db808971e833dd901aac2647d50634bd Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 13 Jan 2024 12:34:35 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit c616fab9053b07ed30508ab714de876409d82653) --- kview/kimageviewer/canvas.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kview/kimageviewer/canvas.h') diff --git a/kview/kimageviewer/canvas.h b/kview/kimageviewer/canvas.h index dbbc1205..b697c01e 100644 --- a/kview/kimageviewer/canvas.h +++ b/kview/kimageviewer/canvas.h @@ -55,8 +55,8 @@ namespace KImageViewer kapp->quit(); } setCentralWidget( widget ); - connect( widget, TQT_SIGNAL( contextPress( const TQPoint & ) ), TQT_SLOT( mySlot( const TQPoint & ) ) ); - connect( m_canvas->widget(), TQT_SIGNAL( contextPress( const TQPoint & ) ), TQT_SLOT( mySlot( const TQPoint & ) ) ); + connect( widget, TQ_SIGNAL( contextPress( const TQPoint & ) ), TQ_SLOT( mySlot( const TQPoint & ) ) ); + connect( m_canvas->widget(), TQ_SIGNAL( contextPress( const TQPoint & ) ), TQ_SLOT( mySlot( const TQPoint & ) ) ); * * You can't connect signals or slots using KImageViewer::Canvas, because this interface -- cgit v1.2.1