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 07e8503f11)
r14.1.x
Michele Calgaro 12 months ago
parent 42d5561686
commit 878adb72a7
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -498,7 +498,7 @@ void DolphinDetailsView::slotActivationUpdate()
TQObjectListIterator it(list); TQObjectListIterator it(list);
TQObject* object = 0; TQObject* object = 0;
while ((object = it.current()) != 0) { while ((object = it.current()) != 0) {
if (object->inherits(TQWIDGET_OBJECT_NAME_STRING)) { if (object->inherits("TQWidget")) {
TQWidget* widget = TQT_TQWIDGET(object); TQWidget* widget = TQT_TQWIDGET(object);
widget->update(); widget->update();
} }

@ -456,7 +456,7 @@ void DolphinIconsView::slotActivationUpdate()
TQObjectListIterator it(list); TQObjectListIterator it(list);
TQObject* object = 0; TQObject* object = 0;
while ((object = it.current()) != 0) { while ((object = it.current()) != 0) {
if (object->inherits(TQWIDGET_OBJECT_NAME_STRING)) { if (object->inherits("TQWidget")) {
TQWidget* widget = TQT_TQWIDGET(object); TQWidget* widget = TQT_TQWIDGET(object);
widget->update(); widget->update();
} }

Loading…
Cancel
Save