[libcalamares] C++ style, warnings--

This commit is contained in:
Adriaan de Groot 2020-02-11 15:36:30 +01:00
parent 241cb04f06
commit 27bc64e63f

View File

@ -34,9 +34,10 @@ Label::Label( QObject* parent )
}
Label::Label( const QString& locale, LabelFormat format, QObject* parent )
: m_locale( Label::getLocale( locale ) )
: QObject( parent )
, m_locale( Label::getLocale( locale ) )
, m_localeId( locale )
, QObject( parent )
{
setLabels( locale, format );
}