diff options
author | Richard Linden <none@none> | 2010-10-15 14:11:24 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-10-15 14:11:24 -0700 |
commit | 98563df257729ce36dff363134136f0b549f8313 (patch) | |
tree | e27cbb6ffc88fc2011bccbb09f3bf4299d1832de /indra/llui/lluistring.h | |
parent | 6dcf769ca5c8bef9a170451094f022ac3791f1d9 (diff) |
switch ui string args to auto_ptr to do automatic cleanup
Diffstat (limited to 'indra/llui/lluistring.h')
-rw-r--r-- | indra/llui/lluistring.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/lluistring.h b/indra/llui/lluistring.h index eff2467bf0..d7be3b1800 100644 --- a/indra/llui/lluistring.h +++ b/indra/llui/lluistring.h @@ -80,7 +80,7 @@ public: S32 length() const { return getUpdatedWResult().size(); } void clear(); - void clearArgs() { if (mArgs) mArgs->clear(); } + void clearArgs() { if (mArgs.get()) mArgs->clear(); } // These utility functions are included for text editing. // They do not affect mOrig and do not perform argument substitution @@ -104,7 +104,7 @@ private: std::string mOrig; mutable std::string mResult; mutable LLWString mWResult; // for displaying - LLStringUtil::format_map_t* mArgs; + std::auto_ptr<LLStringUtil::format_map_t> mArgs; // controls lazy evaluation mutable bool mNeedsResult; |