mirror of
https://github.com/tnodir/fort
synced 2024-11-15 07:25:18 +00:00
UI: Settings: Fix PVS-Studio warning.
V730 Not all members of a class are initialized inside the constructor. Consider inspecting: m_iniExists. settings.cpp 7
This commit is contained in:
parent
0a9ea1cd0c
commit
cf2ed5ad8f
@ -4,7 +4,7 @@
|
||||
|
||||
#include "../fileutil.h"
|
||||
|
||||
Settings::Settings(QObject *parent) : QObject(parent) { }
|
||||
Settings::Settings(QObject *parent) : QObject(parent), m_iniExists(false) { }
|
||||
|
||||
void Settings::setupIni(const QString &filePath)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user