From 1b09e1d239b1af15ea86eb3cfb6cd808520de5e4 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 12 Jul 2023 11:27:37 +0900 Subject: Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3. Signed-off-by: Michele Calgaro --- juk/tageditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'juk') diff --git a/juk/tageditor.cpp b/juk/tageditor.cpp index e4073d24..7862be71 100644 --- a/juk/tageditor.cpp +++ b/juk/tageditor.cpp @@ -767,7 +767,7 @@ void TagEditor::showEvent(TQShowEvent *e) bool TagEditor::eventFilter(TQObject *watched, TQEvent *e) { TQKeyEvent *ke = TQT_TQKEYEVENT(e); - if(watched->inherits(TQSPINBOX_OBJECT_NAME_STRING) && e->type() == TQEvent::KeyRelease && ke->state() == 0) + if(watched->inherits("TQSpinBox") && e->type() == TQEvent::KeyRelease && ke->state() == 0) slotDataChanged(); return false; -- cgit v1.2.1