diff options
author | Michele Calgaro <[email protected]> | 2023-12-16 13:06:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-16 13:13:31 +0900 |
commit | 71d014f5e8c8816163fdfdf63fb20e73cd1870e4 (patch) | |
tree | 2cfe2e687cf6539b42ed6e891c77c160be0765ed /src/dolphindetailsview.cpp | |
parent | d6981f869e99683c60a6c98cc6ae43a1acc99bce (diff) | |
download | dolphin-71d014f5e8c8816163fdfdf63fb20e73cd1870e4.tar.gz dolphin-71d014f5e8c8816163fdfdf63fb20e73cd1870e4.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/dolphindetailsview.cpp')
-rw-r--r-- | src/dolphindetailsview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp index 680f420..7031e82 100644 --- a/src/dolphindetailsview.cpp +++ b/src/dolphindetailsview.cpp @@ -499,7 +499,7 @@ void DolphinDetailsView::slotActivationUpdate() TQObject* object = 0; while ((object = it.current()) != 0) { if (object->inherits("TQWidget")) { - TQWidget* widget = TQT_TQWIDGET(object); + TQWidget* widget = static_cast<TQWidget*>(object); widget->update(); } ++it; |