From d5bc38ae2db2d482db3e3fb83a0d9b917c6d4eb4 Mon Sep 17 00:00:00 2001
From: Mike Antipov <mantipov@productengine.com>
Date: Mon, 7 Dec 2009 15:59:49 +0200
Subject: [PATCH] Work on normal task EXT-3148 (Implement updating of the IM
 Well message counter). Fixed Linux build  -- move constats into class

--HG--
branch : product-engine
---
 indra/newview/llsyswellwindow.cpp | 4 ----
 indra/newview/llsyswellwindow.h   | 4 ++--
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/indra/newview/llsyswellwindow.cpp b/indra/newview/llsyswellwindow.cpp
index 18877e3895a..f64cd4727b4 100644
--- a/indra/newview/llsyswellwindow.cpp
+++ b/indra/newview/llsyswellwindow.cpp
@@ -45,10 +45,6 @@
 #include "lltoastpanel.h"
 #include "llnotificationmanager.h"
 
-
-static std::string NOTIFICATION_WELL_ANCHOR_NAME = "notification_well_panel";
-static std::string IM_WELL_ANCHOR_NAME = "im_well_panel";
-
 //---------------------------------------------------------------------------------
 LLSysWellWindow::LLSysWellWindow(const LLSD& key) : LLDockableFloater(NULL, key),
 													mChannel(NULL),
diff --git a/indra/newview/llsyswellwindow.h b/indra/newview/llsyswellwindow.h
index 18715ceeb56..adbc83677da 100644
--- a/indra/newview/llsyswellwindow.h
+++ b/indra/newview/llsyswellwindow.h
@@ -47,8 +47,6 @@ class LLFlatListView;
 class LLChiclet;
 class LLIMChiclet;
 
-extern std::string NOTIFICATION_WELL_ANCHOR_NAME;
-extern std::string IM_WELL_ANCHOR_NAME;
 
 
 class LLSysWellWindow : public LLDockableFloater
@@ -101,6 +99,8 @@ class LLSysWellWindow : public LLDockableFloater
 	void handleItemRemoved(EItemType removed_item_type);
 	bool anotherTypeExists(EItemType item_type) ;
 
+	const std::string NOTIFICATION_WELL_ANCHOR_NAME;
+	const std::string IM_WELL_ANCHOR_NAME;
 	virtual const std::string& getAnchorViewName() = 0;
 
 	void reshapeWindow();
-- 
GitLab