diff options
author | Alexei Arabadji <aarabadji@productengine.com> | 2010-05-31 17:46:50 +0300 |
---|---|---|
committer | Alexei Arabadji <aarabadji@productengine.com> | 2010-05-31 17:46:50 +0300 |
commit | 325729b739475b5c6b4227f4d1951a70cb9d7028 (patch) | |
tree | 19705a6335db5145316ee6b69193ef4b7f070c25 /indra/newview/llsaveoutfitcombobtn.h | |
parent | 4b8c269d9495718207e58c22c991894aa375e497 (diff) |
EXT-7485 ADDITIONAL FIX Fixed crash at viewer exit
used raw pointer instead of auto_ptr, since lifetime of mSaveMenu field controlled by parent gMenuHolder
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llsaveoutfitcombobtn.h')
-rw-r--r-- | indra/newview/llsaveoutfitcombobtn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llsaveoutfitcombobtn.h b/indra/newview/llsaveoutfitcombobtn.h index d505c4bebe..fec7122194 100644 --- a/indra/newview/llsaveoutfitcombobtn.h +++ b/indra/newview/llsaveoutfitcombobtn.h @@ -54,7 +54,7 @@ public: private: bool mSaveAsDefaultAction; LLPanel* mParent; - std::auto_ptr<LLToggleableMenu> mSaveMenu; + LLToggleableMenu* mSaveMenu; }; #endif // LL_LLSAVEOUTFITCOMBOBTN_H |