summaryrefslogtreecommitdiffstats
path: root/src/codeeditor.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:32:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:18:51 +0900
commit7825473df272b5d0fe2ff7a87910ed06865bfc67 (patch)
tree2a80dba861658d2d64b12c24318c43787c09b721 /src/codeeditor.cpp
parentbb32ffafc904de3a070c8132721ac19bea77da4a (diff)
downloadkpicosim-7825473df272b5d0fe2ff7a87910ed06865bfc67.tar.gz
kpicosim-7825473df272b5d0fe2ff7a87910ed06865bfc67.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 07106c0a34f021d33eecae6571f0a67c990081bd)
Diffstat (limited to 'src/codeeditor.cpp')
-rw-r--r--src/codeeditor.cpp2
1 files changed, 1 insertions, 1 deletions
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 ) ;