diff options
author | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-01-05 13:28:34 +0200 |
---|---|---|
committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-01-05 13:28:34 +0200 |
commit | 5043fcce370fd21e9709f94787191a060919cc2b (patch) | |
tree | 7c2260aa680316727f8ea5d89cc35cdd7b07e2d9 /indra/newview/llfavoritesbar.cpp | |
parent | ddf2cccdb926ca2aac226a90c4030f2d4e8c6f50 (diff) |
Fixed major bug (EXT-3896) Favorites bar consists of overflow button only
- Removed extra attributes from favorites_bar_button.xml.
- Changed warning message about favorites bar button creation failure.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llfavoritesbar.cpp')
-rw-r--r-- | indra/newview/llfavoritesbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfavoritesbar.cpp b/indra/newview/llfavoritesbar.cpp index 6ae6b4877a..4103ccf175 100644 --- a/indra/newview/llfavoritesbar.cpp +++ b/indra/newview/llfavoritesbar.cpp @@ -644,7 +644,7 @@ LLXMLNodePtr LLFavoritesBarCtrl::getButtonXMLNode() bool success = LLUICtrlFactory::getLayeredXMLNode("favorites_bar_button.xml", buttonXMLNode); if (!success) { - llwarns << "Unable to read xml file with button for Favorites Bar: favorites_bar_button.xml" << llendl; + llwarns << "Failed to create Favorites Bar button from favorites_bar_button.xml" << llendl; buttonXMLNode = NULL; } return buttonXMLNode; |