diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 21:15:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-28 21:15:09 +0900 |
commit | 8c94fd2f9bea6e051ac0903362fceb7cd92fde41 (patch) | |
tree | 392235ba61cf719f1f1ee92ac70edf3a3a63c49b /src/outputwidget.cpp | |
parent | a289b05ae93436fc9e338c3c7e94b3ed2e3cc9b0 (diff) | |
download | knmap-8c94fd2f9bea6e051ac0903362fceb7cd92fde41.tar.gz knmap-8c94fd2f9bea6e051ac0903362fceb7cd92fde41.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/outputwidget.cpp')
-rw-r--r-- | src/outputwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/outputwidget.cpp b/src/outputwidget.cpp index d5a5399..9855a8a 100644 --- a/src/outputwidget.cpp +++ b/src/outputwidget.cpp @@ -42,7 +42,7 @@ OutputWidget::OutputWidget( TQWidget* parent, const char* name ) m_priorType( OutputType( -1 )) { setFamily( "monospace" ); setReadOnly( true ); - TQTimer::singleShot( 0, this, SLOT( slotUpdateStatusBarText( ))); + TQTimer::singleShot( 0, this, TQ_SLOT( slotUpdateStatusBarText( ))); } // addOutput |