diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-26 17:50:15 -0800 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-26 17:50:15 -0800 |
commit | 5d2da8a4d01c86141c6fa067194969e85dc68765 (patch) | |
tree | b4892173fae02c2cfddc7a9876e15b5b31b50fdf /indra/newview/llfloaterpay.cpp | |
parent | 40144d47774925b372b7145bfd248448f52fdc45 (diff) |
CID-396
Checker: UNINIT_CTOR
Function: LLFloaterPay::LLFloaterPay(const LLSD &)
File: /indra/newview/llfloaterpay.cpp
Diffstat (limited to 'indra/newview/llfloaterpay.cpp')
-rw-r--r-- | indra/newview/llfloaterpay.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpay.cpp b/indra/newview/llfloaterpay.cpp index c2389e73a0..00959322e5 100644 --- a/indra/newview/llfloaterpay.cpp +++ b/indra/newview/llfloaterpay.cpp @@ -135,7 +135,8 @@ LLFloaterPay::LLFloaterPay(const LLSD& key) mCallback(NULL), mObjectNameText(NULL), mTargetUUID(key.asUUID()), - mTargetIsGroup(FALSE) + mTargetIsGroup(FALSE), + mHaveName(FALSE) { } |