diff options
author | Michele Calgaro <[email protected]> | 2023-12-16 13:06:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-17 20:10:51 +0900 |
commit | a822e3e4661711452c3cb35d5efaae67c56a071a (patch) | |
tree | fb54ceee1d1affdd2fa9ace1a2aa3fb903ea118d /src/urlnavigator.cpp | |
parent | 84dce0e3a02eec1b70dd6fa09ac6663edd4087b0 (diff) | |
download | dolphin-a822e3e4661711452c3cb35d5efaae67c56a071a.tar.gz dolphin-a822e3e4661711452c3cb35d5efaae67c56a071a.zip |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 71d014f5e8c8816163fdfdf63fb20e73cd1870e4)
Diffstat (limited to 'src/urlnavigator.cpp')
-rw-r--r-- | src/urlnavigator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlnavigator.cpp b/src/urlnavigator.cpp index 225ab70..8a3e05a 100644 --- a/src/urlnavigator.cpp +++ b/src/urlnavigator.cpp @@ -442,7 +442,7 @@ void URLNavigator::updateContent() // Don't close and delete the navigator button immediatly, otherwise // the iterator won't work anymore and an object would get deleted more // than once (-> crash). - deleteList.append(TQT_TQWIDGET(object)); + deleteList.append(static_cast<TQWidget*>(object)); } ++it; } |