abstractpreferenceswidget.cpp: fix argument warning

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
Lubomir I. Ivanov 2015-11-07 23:20:09 +02:00 committed by Dirk Hohndel
parent e31b6c0ed3
commit 829f7a2ee2

View file

@ -1,7 +1,7 @@
#include "abstractpreferenceswidget.h"
AbstractPreferencesWidget::AbstractPreferencesWidget(const QString& name, const QIcon& icon, float positionHeight)
: QWidget(), _name(name), _icon(icon), _positionHeight(positionHeight)
: QWidget(), _icon(icon), _name(name), _positionHeight(positionHeight)
{
}