summaryrefslogtreecommitdiffstats
path: root/src/dolphindetailsview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-07-12 09:19:31 +0900
committerMichele Calgaro <[email protected]>2023-07-12 09:19:31 +0900
commit07e8503f11fe701f4c681dbfcb1bcb9a9aa2aae8 (patch)
tree48e93133dcb41083f19e3bb36d04e4a5a5f56f30 /src/dolphindetailsview.cpp
parentaaf6778f3f3a9c9a3279f329bd5cd18edf3953f6 (diff)
downloaddolphin-07e8503f11fe701f4c681dbfcb1bcb9a9aa2aae8.tar.gz
dolphin-07e8503f11fe701f4c681dbfcb1bcb9a9aa2aae8.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]>
Diffstat (limited to 'src/dolphindetailsview.cpp')
-rw-r--r--src/dolphindetailsview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp
index 09765da..3738426 100644
--- a/src/dolphindetailsview.cpp
+++ b/src/dolphindetailsview.cpp
@@ -498,7 +498,7 @@ void DolphinDetailsView::slotActivationUpdate()
TQObjectListIterator it(list);
TQObject* object = 0;
while ((object = it.current()) != 0) {
- if (object->inherits(TQWIDGET_OBJECT_NAME_STRING)) {
+ if (object->inherits("TQWidget")) {
TQWidget* widget = TQT_TQWIDGET(object);
widget->update();
}