diff options
author | Dmitry Oleshko <doleshko@productengine.com> | 2009-11-24 18:22:06 +0200 |
---|---|---|
committer | Dmitry Oleshko <doleshko@productengine.com> | 2009-11-24 18:22:06 +0200 |
commit | b0704256918d4576730ab324e1d67fe8fdd787c0 (patch) | |
tree | 7825ef72a26fc36da8c4212a4b30ae6d9e752ac8 /indra | |
parent | 2e41382084693303366d97de5b1304114989c41b (diff) |
No ticket.
A pointer member must be initialized in constructor.
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llscreenchannel.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp index ce89866b41..24ba288c49 100644 --- a/indra/newview/llscreenchannel.cpp +++ b/indra/newview/llscreenchannel.cpp @@ -115,7 +115,9 @@ void LLScreenChannelBase::init(S32 channel_left, S32 channel_right) // LLScreenChannel ////////////////////// //-------------------------------------------------------------------------- -LLScreenChannel::LLScreenChannel(LLUUID& id): LLScreenChannelBase(id) +LLScreenChannel::LLScreenChannel(LLUUID& id): +LLScreenChannelBase(id) +,mStartUpToastPanel(NULL) { } |