WVectorEditor: Make use of in-class initializers where applicable

This commit is contained in:
Lioncash 2020-06-28 07:05:46 -04:00
parent 34da43e7d4
commit 8994a734dd
2 changed files with 6 additions and 5 deletions

View File

@ -29,7 +29,7 @@ WVectorEditor::~WVectorEditor()
delete mpLayout;
}
CVector3f WVectorEditor::Value()
CVector3f WVectorEditor::Value() const
{
return mValue;
}

View File

@ -30,10 +30,11 @@ class WVectorEditor : public QWidget
QLabel *mpLabelZ;
public:
explicit WVectorEditor(QWidget *pParent = 0);
WVectorEditor(const CVector3f& rkValue, QWidget *pParent = 0);
~WVectorEditor();
CVector3f Value();
explicit WVectorEditor(QWidget *pParent = nullptr);
explicit WVectorEditor(const CVector3f& rkValue, QWidget *pParent = nullptr);
~WVectorEditor() override;
CVector3f Value() const;
void SetOrientation(Qt::Orientation Orientation);
void SetValue(const CVector3f& rkValue);
void SetDefaultValue(double Value);