diff options
| author | Mark Rowe <mark@vector35.com> | 2025-07-15 20:15:19 -0700 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2025-07-16 15:09:24 -0700 |
| commit | e3b8be66fd04e7ef6430ed4cf677a6ef73e19cc5 (patch) | |
| tree | e2ef31016206cc76797fd420461440661abadca3 /ui/variablelist.h | |
| parent | 26eebf712fb54c3fa41778410547a0992702f2cf (diff) | |
Miscellaneous leak fixes in UI code
Diffstat (limited to 'ui/variablelist.h')
| -rw-r--r-- | ui/variablelist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/variablelist.h b/ui/variablelist.h index 374a0fe4..0d419cea 100644 --- a/ui/variablelist.h +++ b/ui/variablelist.h @@ -169,7 +169,7 @@ class VariableListItemDelegate : public QStyledItemDelegate Q_OBJECT public: - VariableListItemDelegate(); + VariableListItemDelegate(QObject* parent = nullptr) : QStyledItemDelegate(parent) {}; void paint(QPainter* painter, const QStyleOptionViewItem& opt, const QModelIndex& index) const; QSize sizeHint(const QStyleOptionViewItem& opt, const QModelIndex& index) const; |
