summaryrefslogtreecommitdiffstats
path: root/kbattleship/kbattleship/kchatwidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:47:01 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-15 20:10:31 +0900
commit65ea671221fd8c4da167553547097672ff12610e (patch)
tree18391347cf4bc97d29d8678aa2d13cd2359d1a1b /kbattleship/kbattleship/kchatwidget.cpp
parentef381c09614ad289332c5f1e5a987213861e4f2d (diff)
downloadtdegames-65ea6712.tar.gz
tdegames-65ea6712.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 6c1a3b2f458949d56c9e1ff2bdf0b1cb33e73d93)
Diffstat (limited to 'kbattleship/kbattleship/kchatwidget.cpp')
-rw-r--r--kbattleship/kbattleship/kchatwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kbattleship/kbattleship/kchatwidget.cpp b/kbattleship/kbattleship/kchatwidget.cpp
index f6b804ee..649fd777 100644
--- a/kbattleship/kbattleship/kchatwidget.cpp
+++ b/kbattleship/kbattleship/kchatwidget.cpp
@@ -61,7 +61,7 @@ void KChatWidget::slotReceivedMessage(const TQString &nickname, const TQString &
bool KChatWidget::eventFilter(TQObject *obj, TQEvent *e)
{
- if(TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(commentEdit) && e->type() == TQEvent::Wheel)
+ if(obj == commentEdit && e->type() == TQEvent::Wheel)
{
kapp->notify(TQT_TQOBJECT(chatView), e);
return true;