aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloateravatartextures.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llfloateravatartextures.cpp
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llfloateravatartextures.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloateravatartextures.cpp b/linden/indra/newview/llfloateravatartextures.cpp
index 0b529b7..a5df51b 100644
--- a/linden/indra/newview/llfloateravatartextures.cpp
+++ b/linden/indra/newview/llfloateravatartextures.cpp
@@ -40,7 +40,7 @@
40#include "llvoavatar.h" 40#include "llvoavatar.h"
41 41
42LLFloaterAvatarTextures::LLFloaterAvatarTextures(const LLUUID& id) : 42LLFloaterAvatarTextures::LLFloaterAvatarTextures(const LLUUID& id) :
43 LLFloater("avatar_texture_debug"), 43 LLFloater(std::string("avatar_texture_debug")),
44 mID(id) 44 mID(id)
45{ 45{
46} 46}
@@ -110,7 +110,7 @@ static void update_texture_ctrl(LLVOAvatar* avatarp,
110 if (id == IMG_DEFAULT_AVATAR) 110 if (id == IMG_DEFAULT_AVATAR)
111 { 111 {
112 ctrl->setImageAssetID(LLUUID::null); 112 ctrl->setImageAssetID(LLUUID::null);
113 ctrl->setToolTip(LLString("IMG_DEFAULT_AVATAR")); 113 ctrl->setToolTip(std::string("IMG_DEFAULT_AVATAR"));
114 } 114 }
115 else 115 else
116 { 116 {