diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 21:16:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-28 21:38:27 +0900 |
commit | a3180d7d508dc046a75a887d43a7e6b2d5f02468 (patch) | |
tree | 6fc3295d8f5cf222b37b0721ed00b1a1f514cc96 /src/kwidgetlistbox.cpp | |
parent | fe71db0569f2ab1aa559a031aa9ad54003371aea (diff) | |
download | tork-a3180d7d508dc046a75a887d43a7e6b2d5f02468.tar.gz tork-a3180d7d508dc046a75a887d43a7e6b2d5f02468.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kwidgetlistbox.cpp')
-rw-r--r-- | src/kwidgetlistbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kwidgetlistbox.cpp b/src/kwidgetlistbox.cpp index 16ef004..9249866 100644 --- a/src/kwidgetlistbox.cpp +++ b/src/kwidgetlistbox.cpp @@ -36,8 +36,8 @@ KWidgetListbox::KWidgetListbox(TQWidget *parent, const char *name) verticalHeader()->hide(); setSelectionMode(TQTable::NoSelection); setFocusStyle(TQTable::FollowStyle); - connect(this, SIGNAL(currentChanged(int, int)), - this, SLOT(selectionChanged(int, int))); + connect(this, TQ_SIGNAL(currentChanged(int, int)), + this, TQ_SLOT(selectionChanged(int, int))); setHScrollBarMode(TQScrollView::AlwaysOff); setVScrollBarMode(TQScrollView::Auto); } |