summaryrefslogtreecommitdiffstats
path: root/kchart
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:44:08 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-18 20:22:59 +0900
commita7ea84c97639f635d798348432f355e3ac496a1d (patch)
tree34917a6af147ff19cc1f059ef72db53a196d4b61 /kchart
parentca88704c3e4a4fd5ddc9e96e4ccf22b53816e03d (diff)
downloadkoffice-a7ea84c97639f635d798348432f355e3ac496a1d.tar.gz
koffice-a7ea84c97639f635d798348432f355e3ac496a1d.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kchart')
-rw-r--r--kchart/kchartDataEditor.cpp2
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());