Skip to content
Snippets Groups Projects
Commit fb0ff294 authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-392

 Checker: UNINIT_CTOR
Function: LLNearbyChatToastPanel::LLNearbyChatToastPanel()
File: /indra/newview/llchatitemscontainerctrl.h
parent 30a2efb1
No related branches found
No related tags found
No related merge requests found
/** /**
* @file llchatitemscontainer.h * @file llchatitemscontainerctrl.h
* @brief chat history scrolling panel implementation * @brief chat history scrolling panel implementation
* *
* $LicenseInfo:firstyear=2004&license=viewergpl$ * $LicenseInfo:firstyear=2004&license=viewergpl$
...@@ -30,12 +30,12 @@ ...@@ -30,12 +30,12 @@
* $/LicenseInfo$ * $/LicenseInfo$
*/ */
#ifndef LL_LLCHATITEMSCONTAINER_H_ #ifndef LL_LLCHATITEMSCONTAINERCTRL_H_
#define LL_LLCHATITEMSCONTAINER_H_ #define LL_LLCHATITEMSCONTAINERCTRL_H_
#include "llchat.h"
#include "llpanel.h" #include "llpanel.h"
#include "llscrollbar.h" #include "llscrollbar.h"
#include "string"
#include "llviewerchat.h" #include "llviewerchat.h"
#include "lltoastpanel.h" #include "lltoastpanel.h"
...@@ -49,10 +49,12 @@ typedef enum e_show_item_header ...@@ -49,10 +49,12 @@ typedef enum e_show_item_header
class LLNearbyChatToastPanel: public LLToastPanelBase class LLNearbyChatToastPanel: public LLToastPanelBase
{ {
protected: protected:
LLNearbyChatToastPanel():mIsDirty(false){}; LLNearbyChatToastPanel()
:
mIsDirty(false),
mSourceType(CHAT_SOURCE_OBJECT)
{};
public: public:
~LLNearbyChatToastPanel(){} ~LLNearbyChatToastPanel(){}
static LLNearbyChatToastPanel* createInstance(); static LLNearbyChatToastPanel* createInstance();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment