diff options
Diffstat (limited to 'kchart/kchartDataEditor.cpp')
-rw-r--r-- | kchart/kchartDataEditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kchart/kchartDataEditor.cpp b/kchart/kchartDataEditor.cpp index 8f08dd78..544c41cb 100644 --- a/kchart/kchartDataEditor.cpp +++ b/kchart/kchartDataEditor.cpp @@ -73,7 +73,7 @@ void kchartDataSpinBox::stepDown() bool kchartDataSpinBox::eventFilter( TQObject *obj, TQEvent *ev ) { - if ( TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(editor()) ) { + if ( obj == editor() ) { if ( ev->type() == TQEvent::FocusOut ) { //kdDebug() << "Focus out" << endl; setValue(editor()->text().toInt()); |