summaryrefslogtreecommitdiffstats
path: root/kchart
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-08-12 18:44:08 +0900
committerMichele Calgaro <[email protected]>2023-08-18 21:44:59 +0900
commit1607518b8c749b4195c5ab11b405f77001526a6a (patch)
tree89b8bc00c6b9625f6a4f061594f57f457d18a174 /kchart
parent64574118b7f71db7cb0a7f513a824dd51185b632 (diff)
downloadkoffice-1607518b8c749b4195c5ab11b405f77001526a6a.tar.gz
koffice-1607518b8c749b4195c5ab11b405f77001526a6a.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit a7ea84c97639f635d798348432f355e3ac496a1d)
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());