@ -496,7 +496,7 @@ void KMdiChildView::slot_childDestroyed()
const TQObject * pLostChild = TQT_TQOBJECT_CONST ( sender ( ) ) ;
if ( pLostChild & & ( pLostChild - > isWidgetType ( ) ) )
{
TQObjectList * list = ( ( TQObject * ) ( pLostChild ) ) - > queryList ( " TQWidget " ) ;
TQObjectList * list = ( ( TQObject * ) ( pLostChild ) ) - > queryList ( TQWIDGET_OBJECT_NAME_STRING ) ;
list - > insert ( 0 , pLostChild ) ; // add the lost child to the list too, just to save code
TQObjectListIt it ( * list ) ; // iterate over all lost child widgets
TQObject * obj ;
@ -545,7 +545,7 @@ bool KMdiChildView::eventFilter( TQObject *obj, TQEvent *e )
{
if ( obj - > isWidgetType ( ) )
{
TQObjectList * list = queryList ( " TQWidget " ) ;
TQObjectList * list = queryList ( TQWIDGET_OBJECT_NAME_STRING ) ;
if ( list - > tqfind ( obj ) ! = - 1 )
m_focusedChildWidget = ( TQWidget * ) obj ;
@ -569,7 +569,7 @@ bool KMdiChildView::eventFilter( TQObject *obj, TQEvent *e )
TQObject * pLostChild = TQT_TQOBJECT ( ( ( TQChildEvent * ) e ) - > child ( ) ) ;
if ( ( pLostChild ! = 0L ) & & ( pLostChild - > isWidgetType ( ) ) )
{
TQObjectList * list = pLostChild - > queryList ( " TQWidget " ) ;
TQObjectList * list = pLostChild - > queryList ( TQWIDGET_OBJECT_NAME_STRING ) ;
list - > insert ( 0 , pLostChild ) ; // add the lost child to the list too, just to save code
TQObjectListIt it ( * list ) ; // iterate over all lost child widgets
TQObject * o ;
@ -602,7 +602,7 @@ bool KMdiChildView::eventFilter( TQObject *obj, TQEvent *e )
TQWidget * pNewWidget = ( TQWidget * ) pNewChild ;
if ( pNewWidget - > testWFlags ( ( WFlags ) ( WType_Dialog | WShowModal ) ) )
return false ;
TQObjectList * list = pNewWidget - > queryList ( " TQWidget " ) ;
TQObjectList * list = pNewWidget - > queryList ( TQWIDGET_OBJECT_NAME_STRING ) ;
list - > insert ( 0 , pNewChild ) ; // add the new child to the list too, just to save code
TQObjectListIt it ( * list ) ; // iterate over all new child widgets
TQObject * o ;
@ -647,7 +647,7 @@ bool KMdiChildView::eventFilter( TQObject *obj, TQEvent *e )
/** Switches interposing in event loop of all current child widgets off. */
void KMdiChildView : : removeEventFilterForAllChildren ( )
{
TQObjectList * list = queryList ( " TQWidget " ) ;
TQObjectList * list = queryList ( TQWIDGET_OBJECT_NAME_STRING ) ;
TQObjectListIt it ( * list ) ; // iterate over all child widgets
TQObject * obj ;
while ( ( obj = it . current ( ) ) ! = 0 )