mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-04 09:45:34 +00:00
Fix pointer initialisation bug
This commit is contained in:
parent
4879405097
commit
30af92f575
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ CSMPrefs::EnumValues& CSMPrefs::EnumValues::add (const std::string& value, const
|
|||
|
||||
CSMPrefs::EnumSetting::EnumSetting (Category *parent, Settings::Manager *values,
|
||||
QMutex *mutex, const std::string& key, const std::string& label, const EnumValue& default_)
|
||||
: Setting (parent, values, mutex, key, label), mDefault (default_), mWidget()
|
||||
: Setting (parent, values, mutex, key, label), mDefault (default_), mWidget(0)
|
||||
{}
|
||||
|
||||
CSMPrefs::EnumSetting& CSMPrefs::EnumSetting::setTooltip (const std::string& tooltip)
|
||||
|
|
Loading…
Reference in a new issue