diff options
Diffstat (limited to 'src/widgets/qbuttongroup.cpp')
-rw-r--r-- | src/widgets/qbuttongroup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/qbuttongroup.cpp b/src/widgets/qbuttongroup.cpp index 5745cd3ff..595bd883b 100644 --- a/src/widgets/qbuttongroup.cpp +++ b/src/widgets/qbuttongroup.cpp @@ -434,7 +434,7 @@ void TQButtonGroup::buttonClicked() void TQButtonGroup::buttonToggled( bool on ) { // introduce a TQButtonListIt if calling anything - if ( !on || !excl_grp && !radio_excl ) + if ( !on || ( !excl_grp && !radio_excl ) ) return; TQButton *bt = ::tqt_cast<TQButton*>(sender()); // object that sent the signal #if defined(QT_CHECK_NULL) |