CCustomDelegate: Ensure all members of SDelegateFontInfo are initialized

This commit is contained in:
Lioncash 2020-07-10 15:23:58 -04:00
parent fafa12af91
commit 9936d1ff3a
1 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ struct SDelegateFontInfo
QFontMetrics InfoFontMetrics;
QPen NamePen;
QPen InfoPen;
int Margin;
int Spacing;
int Margin = 0;
int Spacing = 0;
SDelegateFontInfo()
: NameFontMetrics(NameFont), InfoFontMetrics(InfoFont) {}
@ -28,7 +28,7 @@ class CCustomDelegate : public QStyledItemDelegate
Q_OBJECT
public:
explicit CCustomDelegate(QObject* pParent = 0)
explicit CCustomDelegate(QObject* pParent = nullptr)
: QStyledItemDelegate(pParent)
{}