diff options
author | Michele Calgaro <[email protected]> | 2023-08-12 18:47:26 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-18 16:38:42 +0900 |
commit | 48b07a0ff120e8b4479bcac912d8a8f043e22ae4 (patch) | |
tree | a3d42bf916706ea512c6887baea5589448afd760 /tdeui/kcursor.cpp | |
parent | 23278d259378e17087bf9aeaa5e45974dfb74bce (diff) | |
download | tdelibs-48b07a0ff120e8b4479bcac912d8a8f043e22ae4.tar.gz tdelibs-48b07a0ff120e8b4479bcac912d8a8f043e22ae4.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdeui/kcursor.cpp')
-rw-r--r-- | tdeui/kcursor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeui/kcursor.cpp b/tdeui/kcursor.cpp index 17f523d86..7a13e791d 100644 --- a/tdeui/kcursor.cpp +++ b/tdeui/kcursor.cpp @@ -317,7 +317,7 @@ TQWidget* KCursorPrivateAutoHideEventFilter::actualWidget() const bool KCursorPrivateAutoHideEventFilter::eventFilter( TQObject *o, TQEvent *e ) { - Q_ASSERT( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(m_widget) ); + Q_ASSERT( o == m_widget ); switch ( e->type() ) { |