summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-26 17:56:36 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-26 17:56:36 -0800
commit8d88308b36add28edd8a9976dd22b8877be0272e (patch)
tree37e4f844b92cd2da56c5b13aeb9a5c5da29efc6c /indra/newview
parentcbbfe761caffdd292c464db7b015a50a4ed5e731 (diff)
CID-394
Checker: UNINIT_CTOR Function: LLPanelScriptLimitsRegionMemory::LLPanelScriptLimitsRegionMemory() File: /indra/newview/llfloaterscriptlimits.h
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloaterscriptlimits.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/indra/newview/llfloaterscriptlimits.h b/indra/newview/llfloaterscriptlimits.h
index 7e2b536eb6..e0fdf052eb 100644
--- a/indra/newview/llfloaterscriptlimits.h
+++ b/indra/newview/llfloaterscriptlimits.h
@@ -145,7 +145,14 @@ class LLPanelScriptLimitsRegionMemory : public LLPanelScriptLimitsInfo, LLRemote
public:
LLPanelScriptLimitsRegionMemory()
- : LLPanelScriptLimitsInfo(), LLRemoteParcelInfoObserver(), mParcelId(LLUUID()), mGotParcelMemoryUsed(FALSE), mGotParcelMemoryMax(FALSE) {};
+ : LLPanelScriptLimitsInfo(), LLRemoteParcelInfoObserver(),,
+
+ mParcelId(LLUUID()),
+ mGotParcelMemoryUsed(FALSE),
+ mGotParcelMemoryMax(FALSE),
+ mParcelMemoryMax(0),
+ mParcelMemoryUsed(0) {};
+
~LLPanelScriptLimitsRegionMemory()
{
LLRemoteParcelInfoProcessor::getInstance()->removeObserver(mParcelId, this);
@@ -167,9 +174,9 @@ public:
private:
- void onNameCache( const LLUUID& id,
- const std::string& first_name,
- const std::string& last_name);
+ void onNameCache(const LLUUID& id,
+ const std::string& first_name,
+ const std::string& last_name);
LLUUID mParcelId;
BOOL mGotParcelMemoryUsed;