From 7825473df272b5d0fe2ff7a87910ed06865bfc67 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 29 Dec 2023 16:32:00 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit 07106c0a34f021d33eecae6571f0a67c990081bd) --- src/codeeditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/codeeditor.cpp') diff --git a/src/codeeditor.cpp b/src/codeeditor.cpp index 156aabd..77db160 100644 --- a/src/codeeditor.cpp +++ b/src/codeeditor.cpp @@ -35,7 +35,7 @@ CodeEditor::CodeEditor(TQWidget *parent, const char *name) m_view = ( Kate::View * ) m_doc->createView( this ) ; m_view->setIconBorder( true ) ; - connect( m_view, TQT_SIGNAL(cursorPositionChanged()), this, TQT_SLOT(slotCursorPositionChanged()) ); + connect( m_view, TQ_SIGNAL(cursorPositionChanged()), this, TQ_SLOT(slotCursorPositionChanged()) ); layout->addWidget( m_view ) ; -- cgit v1.2.1