summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-26 17:58:47 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-26 17:58:47 -0800
commitbc03cbaab906bf8f5d0a624379d30a89018ae9e2 (patch)
tree0b4ba322672ca93649ed3784639e12b8852e081c /indra
parent8d88308b36add28edd8a9976dd22b8877be0272e (diff)
CID-393
Checker: UNINIT_CTOR Function: LLPanelScriptLimitsRegionURLs::LLPanelScriptLimitsRegionURLs() File: /indra/newview/llfloaterscriptlimits.h
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfloaterscriptlimits.h11
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()
{
};