diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-26 17:58:47 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-26 17:58:47 -0800 |
commit | bc03cbaab906bf8f5d0a624379d30a89018ae9e2 (patch) | |
tree | 0b4ba322672ca93649ed3784639e12b8852e081c /indra | |
parent | 8d88308b36add28edd8a9976dd22b8877be0272e (diff) |
CID-393
Checker: UNINIT_CTOR
Function: LLPanelScriptLimitsRegionURLs::LLPanelScriptLimitsRegionURLs()
File: /indra/newview/llfloaterscriptlimits.h
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloaterscriptlimits.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/indra/newview/llfloaterscriptlimits.h b/indra/newview/llfloaterscriptlimits.h index e0fdf052eb..748ff28bd9 100644 --- a/indra/newview/llfloaterscriptlimits.h +++ b/indra/newview/llfloaterscriptlimits.h @@ -207,7 +207,16 @@ class LLPanelScriptLimitsRegionURLs : public LLPanelScriptLimitsInfo public: LLPanelScriptLimitsRegionURLs() - : LLPanelScriptLimitsInfo(), mParcelId(LLUUID()), mGotParcelURLsUsed(FALSE), mGotParcelURLsMax(FALSE) {}; + : LLPanelScriptLimitsInfo(), + + mParcelId(LLUUID()), + mGotParcelURLsUsed(FALSE), + mGotParcelURLsMax(FALSE), + mParcelURLsMax(0), + mParcelURLsUsed(0) + { + }; + ~LLPanelScriptLimitsRegionURLs() { }; |