diff options
author | Michele Calgaro <[email protected]> | 2023-07-12 10:17:40 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-07-13 16:25:00 +0900 |
commit | 76fa61f90d0fdaacff018bccae25b3c2ef1b4ea8 (patch) | |
tree | d104cde3708dce85cfd6b3ed73cfbafa4ffb9e06 /konqueror/konq_view.cpp | |
parent | a5979a0e0f46e7da68d50d16919e46b89dc9e9e9 (diff) | |
download | tdebase-76fa61f90d0fdaacff018bccae25b3c2ef1b4ea8.tar.gz tdebase-76fa61f90d0fdaacff018bccae25b3c2ef1b4ea8.zip |
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 22625693f124aae09863f4d33e30b625a96c3557)
Diffstat (limited to 'konqueror/konq_view.cpp')
-rw-r--r-- | konqueror/konq_view.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/konqueror/konq_view.cpp b/konqueror/konq_view.cpp index 3a970018b..9f7bef4d8 100644 --- a/konqueror/konq_view.cpp +++ b/konqueror/konq_view.cpp @@ -472,7 +472,7 @@ void KonqView::connectPart( ) m_pPart->widget()->installEventFilter( this ); - if (m_bBackRightClick && m_pPart->widget()->inherits(TQSCROLLVIEW_OBJECT_NAME_STRING) ) + if (m_bBackRightClick && m_pPart->widget()->inherits("TQScrollView") ) { (static_cast<TQScrollView *>(m_pPart->widget()))->viewport()->installEventFilter( this ); } @@ -1220,7 +1220,7 @@ void KonqView::reparseConfiguration() bool b = KonqSettings::backRightClick(); if ( m_bBackRightClick != b ) { - if (m_bBackRightClick && m_pPart->widget()->inherits(TQSCROLLVIEW_OBJECT_NAME_STRING) ) + if (m_bBackRightClick && m_pPart->widget()->inherits("TQScrollView") ) { (static_cast<TQScrollView *>(m_pPart->widget()))->viewport()->installEventFilter( this ); } @@ -1265,7 +1265,7 @@ bool KonqView::eventFilter( TQObject *obj, TQEvent *e ) KURL::List lstDragURLs; bool ok = KURLDrag::decode( ev, lstDragURLs ); - TQObjectList *children = m_pPart->widget()->queryList( TQWIDGET_OBJECT_NAME_STRING ); + TQObjectList *children = m_pPart->widget()->queryList( "TQWidget" ); if ( ok && !lstDragURLs.first().url().contains( "javascript:", false ) && // ### this looks like a hack to me |