mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
abstractpreferenceswidget.cpp: fix argument warning
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
e31b6c0ed3
commit
829f7a2ee2
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
#include "abstractpreferenceswidget.h"
|
#include "abstractpreferenceswidget.h"
|
||||||
|
|
||||||
AbstractPreferencesWidget::AbstractPreferencesWidget(const QString& name, const QIcon& icon, float positionHeight)
|
AbstractPreferencesWidget::AbstractPreferencesWidget(const QString& name, const QIcon& icon, float positionHeight)
|
||||||
: QWidget(), _name(name), _icon(icon), _positionHeight(positionHeight)
|
: QWidget(), _icon(icon), _name(name), _positionHeight(positionHeight)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue