diff --git a/indra/newview/llfloatermessagelog.cpp b/indra/newview/llfloatermessagelog.cpp index 58dbe2b90..3ee8018ad 100644 --- a/indra/newview/llfloatermessagelog.cpp +++ b/indra/newview/llfloatermessagelog.cpp @@ -12,6 +12,20 @@ #include "llmenugl.h" #include "llagent.h" + + +//////////////////////////////// +// LLNetListItem +//////////////////////////////// +LLNetListItem::LLNetListItem(LLUUID id) +: mID(id), + mAutoName(TRUE), + mName("No name"), + mPreviousRegionName(""), + mCircuitData(NULL) +{ +} + //////////////////////////////// // LLFloaterMessageLogItem //////////////////////////////// diff --git a/indra/newview/llfloatermessagelog.h b/indra/newview/llfloatermessagelog.h index 94a9e27f3..104f57ebb 100644 --- a/indra/newview/llfloatermessagelog.h +++ b/indra/newview/llfloatermessagelog.h @@ -26,6 +26,8 @@ public: U32 mFlags; std::string getFull(BOOL show_header = TRUE); BOOL isOutgoing(); + void refreshNetList(); + private: static LLTemplateMessageReader* sTemplateMessageReader; static std::string getString(LLTemplateMessageReader* readerp, const char* block_name, S32 block_num, const char* var_name, e_message_variable_type var_type, BOOL &returned_hex, BOOL summary_mode = FALSE);