diff options
| author | Kai Uwe Broulik <[email protected]> | 2022-07-05 13:18:45 +0200 |
|---|---|---|
| committer | Kai Uwe Broulik <[email protected]> | 2022-07-06 17:33:42 +0000 |
| commit | 5ebc6b865de31b84faa353f6a85a76734c06ebe4 (patch) | |
| tree | 89e2e39b63f78b076a97c3d064e65f700bbc0dc2 /src/views/dolphinview.h | |
| parent | f3a0986b8b1addabb93323ac850060ffa0a8c5bd (diff) | |
Don't reinterpret_cast QEvent
We know that we'll be a `QHelpEvent` from `QEvent::ToolTip`, so do a
static_cast from the event handler (where it's obvious from context),
and then pass it along to `tryShowNameToolTip`.
Diffstat (limited to 'src/views/dolphinview.h')
| -rw-r--r-- | src/views/dolphinview.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index 33d432c9e..62ced31ac 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -35,6 +35,7 @@ class VersionControlObserver; class ViewProperties; class QLabel; class QGraphicsSceneDragDropEvent; +class QHelpEvent; class QRegularExpression; /** @@ -862,7 +863,7 @@ private: void updatePlaceholderLabel(); - void tryShowNameToolTip(QEvent* event); + void tryShowNameToolTip(QHelpEvent* event); private: void updatePalette(); |
