mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
System : Reorder initialization order to match declaration order
This commit is contained in:
@@ -32,7 +32,9 @@
|
||||
class FileListModel: public QStringListModel
|
||||
{
|
||||
public:
|
||||
explicit FileListModel(QObject *parent = nullptr) : m_isItemsEditable(false), QStringListModel(parent)
|
||||
explicit FileListModel(QObject* parent = nullptr)
|
||||
: QStringListModel(parent)
|
||||
, m_isItemsEditable(false)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user