diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:33:37 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 10:33:37 +0900 |
commit | 43379ee382fcc18c575c57fdae218a7d0e51e526 (patch) | |
tree | 5fcb954cee7a289c2a3b6cac92171cb18b0bf800 /src/kbfxspinxscrollbar.cpp | |
parent | bb92088ae48f7facbc0d25370eb7eb32f183328c (diff) | |
download | kbfx-43379ee382fcc18c575c57fdae218a7d0e51e526.tar.gz kbfx-43379ee382fcc18c575c57fdae218a7d0e51e526.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kbfxspinxscrollbar.cpp')
-rw-r--r-- | src/kbfxspinxscrollbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kbfxspinxscrollbar.cpp b/src/kbfxspinxscrollbar.cpp index f4cd784..eb6a174 100644 --- a/src/kbfxspinxscrollbar.cpp +++ b/src/kbfxspinxscrollbar.cpp @@ -44,7 +44,7 @@ KbfxSpinxScrollBar::KbfxSpinxScrollBar ( TQWidget * parent, const char *name, in m_triAngle = TQPointArray ( 3 ); m_dir = DOWN; m_timer = new TQTimer ( this,"ScrollTimer" ); - connect ( m_timer,TQT_SIGNAL ( timeout() ),this,TQT_SLOT ( timeoutslot() ) ); + connect ( m_timer,TQ_SIGNAL ( timeout() ),this,TQ_SLOT ( timeoutslot() ) ); m_pressed = false; } |