Checker: UNINIT_CTOR
Function: LLFloaterHardwareSettings::LLFloaterHardwareSettings(const LLSD &)
File: /indra/newview/llfloaterhardwaresettings.cpp
master
Tofu Linden 2010-01-28 10:36:21 -08:00
parent 50bf40a631
commit 8da9a472b2
1 changed files with 11 additions and 1 deletions

View File

@ -50,7 +50,17 @@
#include "llsliderctrl.h"
LLFloaterHardwareSettings::LLFloaterHardwareSettings(const LLSD& key)
: LLFloater(key)
: LLFloater(key),
// these should be set on imminent refresh() call,
// but init them anyway
mUseVBO(0),
mUseAniso(0),
mFSAASamples(0),
mGamma(0.0),
mVideoCardMem(0),
mFogRatio(0.0),
mProbeHardwareOnStartup(FALSE)
{
//LLUICtrlFactory::getInstance()->buildFloater(this, "floater_hardware_settings.xml");
}