Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 340ffa901b)
pull/70/head
Michele Calgaro 11 months ago
parent a9f6e5c5b2
commit 57dd4fe2e3
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -1310,7 +1310,7 @@ void PMDockManager::activate()
obj->show(); obj->show();
} }
} }
if ( !main->inherits(TQDIALOG_OBJECT_NAME_STRING) ) main->show(); if ( !main->inherits("TQDialog") ) main->show();
} }
bool PMDockManager::eventFilter( TQObject *obj, TQEvent *event ) bool PMDockManager::eventFilter( TQObject *obj, TQEvent *event )
@ -2468,7 +2468,7 @@ void PMDockArea::resizeEvent(TQResizeEvent *rsize)
#ifndef NO_KDE2 #ifndef NO_KDE2
kdDebug()<<"PMDockArea::resize"<<endl; kdDebug()<<"PMDockArea::resize"<<endl;
#endif #endif
TQObjectList *list=queryList(TQWIDGET_OBJECT_NAME_STRING,0,false); TQObjectList *list=queryList("TQWidget",0,false);
TQObjectListIt it( *list ); // iterate over the buttons TQObjectListIt it( *list ); // iterate over the buttons
TQObject *obj; TQObject *obj;

@ -35,7 +35,7 @@ public:
AggCanvasFactory(); AggCanvasFactory();
virtual ~AggCanvasFactory(); virtual ~AggCanvasFactory();
virtual TQObject *createObject(TQObject *parent = 0, const char *pname = 0, const char *name = TQOBJECT_OBJECT_NAME_STRING, const TQStringList &args = TQStringList()); virtual TQObject *createObject(TQObject *parent = 0, const char *pname = 0, const char *name = "TQObject", const TQStringList &args = TQStringList());
}; };
}; };

@ -35,7 +35,7 @@ public:
LibartCanvasFactory(); LibartCanvasFactory();
virtual ~LibartCanvasFactory(); virtual ~LibartCanvasFactory();
virtual TQObject *createObject(TQObject *parent = 0, const char *pname = 0, const char *name = TQOBJECT_OBJECT_NAME_STRING, const TQStringList &args = TQStringList()); virtual TQObject *createObject(TQObject *parent = 0, const char *pname = 0, const char *name = "TQObject", const TQStringList &args = TQStringList());
}; };
} }

@ -1306,7 +1306,7 @@ void KuickShow::slotReplayEvent()
// ### WORKAROUND for TQIconView bug in TQt <= 3.0.3 at least // ### WORKAROUND for TQIconView bug in TQt <= 3.0.3 at least
if ( fileWidget && fileWidget->view() ) { if ( fileWidget && fileWidget->view() ) {
TQWidget *widget = fileWidget->view()->widget(); TQWidget *widget = fileWidget->view()->widget();
if ( widget->inherits( TQICONVIEW_OBJECT_NAME_STRING ) || widget->child(0, TQICONVIEW_OBJECT_NAME_STRING ) ){ if ( widget->inherits( "TQIconView" ) || widget->child(0, "TQIconView" ) ){
fileWidget->setSorting( fileWidget->sorting() ); fileWidget->setSorting( fileWidget->sorting() );
} }
} }
@ -1320,7 +1320,7 @@ void KuickShow::replayAdvance(DelayedRepeatEvent *event)
// rely on sorting to be correct before the TQIconView has been show()n. // rely on sorting to be correct before the TQIconView has been show()n.
if ( fileWidget && fileWidget->view() ) { if ( fileWidget && fileWidget->view() ) {
TQWidget *widget = fileWidget->view()->widget(); TQWidget *widget = fileWidget->view()->widget();
if ( widget->inherits( TQICONVIEW_OBJECT_NAME_STRING ) || widget->child(0, TQICONVIEW_OBJECT_NAME_STRING ) ){ if ( widget->inherits( "TQIconView" ) || widget->child(0, "TQIconView" ) ){
fileWidget->setSorting( fileWidget->sorting() ); fileWidget->setSorting( fileWidget->sorting() );
} }
} }

Loading…
Cancel
Save