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-29 16:32:00 +0900
commit07106c0a34f021d33eecae6571f0a67c990081bd (patch)
tree2a80dba861658d2d64b12c24318c43787c09b721 /src/codeeditor.cpp
parent113054cd5b4ce6ed21917e36f30d1fdcf780c525 (diff)
downloadkpicosim-07106c0a34f021d33eecae6571f0a67c990081bd.tar.gz
kpicosim-07106c0a34f021d33eecae6571f0a67c990081bd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 ) ;