Skip to content
Snippets Groups Projects
Commit 07bb12bb authored by Drake Arconis's avatar Drake Arconis
Browse files

Make these UIColor static...

parent 12fb7362
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,7 @@ LLInboxInventoryPanel::~LLInboxInventoryPanel() ...@@ -64,7 +64,7 @@ LLInboxInventoryPanel::~LLInboxInventoryPanel()
LLFolderViewFolder * LLInboxInventoryPanel::createFolderViewFolder(LLInvFVBridge * bridge) LLFolderViewFolder * LLInboxInventoryPanel::createFolderViewFolder(LLInvFVBridge * bridge)
{ {
LLUIColor item_color = LLUIColorTable::instance().getColor("MenuItemEnabledColor", DEFAULT_WHITE); static LLUIColor item_color = LLUIColorTable::instance().getColor("MenuItemEnabledColor", DEFAULT_WHITE);
LLInboxFolderViewFolder::Params params; LLInboxFolderViewFolder::Params params;
...@@ -80,7 +80,7 @@ LLFolderViewFolder * LLInboxInventoryPanel::createFolderViewFolder(LLInvFVBridge ...@@ -80,7 +80,7 @@ LLFolderViewFolder * LLInboxInventoryPanel::createFolderViewFolder(LLInvFVBridge
LLFolderViewItem * LLInboxInventoryPanel::createFolderViewItem(LLInvFVBridge * bridge) LLFolderViewItem * LLInboxInventoryPanel::createFolderViewItem(LLInvFVBridge * bridge)
{ {
LLUIColor item_color = LLUIColorTable::instance().getColor("MenuItemEnabledColor", DEFAULT_WHITE); static LLUIColor item_color = LLUIColorTable::instance().getColor("MenuItemEnabledColor", DEFAULT_WHITE);
LLInboxFolderViewItem::Params params; LLInboxFolderViewItem::Params params;
......
...@@ -1734,7 +1734,7 @@ void LLPanelObjectInventory::createViewsForCategory(LLInventoryObject::object_li ...@@ -1734,7 +1734,7 @@ void LLPanelObjectInventory::createViewsForCategory(LLInventoryObject::object_li
LLInventoryObject* parent, LLInventoryObject* parent,
LLFolderViewFolder* folder) LLFolderViewFolder* folder)
{ {
LLUIColor item_color = LLUIColorTable::instance().getColor("MenuItemEnabledColor", DEFAULT_WHITE); static LLUIColor item_color = LLUIColorTable::instance().getColor("MenuItemEnabledColor", DEFAULT_WHITE);
// Find all in the first pass // Find all in the first pass
std::vector<obj_folder_pair*> child_categories; std::vector<obj_folder_pair*> child_categories;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment