PVS: V730 Not all members of a class are initialized inside the constructor

This commit is contained in:
wmayer
2019-03-03 18:16:14 +01:00
parent 8a95461ae3
commit 7e482a5002
6 changed files with 17 additions and 16 deletions

View File

@@ -55,7 +55,7 @@ class OffsetWidget::Private
public:
Ui_TaskOffset ui;
Part::Offset* offset;
Private()
Private() : offset(nullptr)
{
}
~Private()