summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-06-07 13:10:36 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-06-07 13:10:36 -0700
commitb15cdc828ea188f278b3ffec4e6442cb4688901d (patch)
tree6fe84e8becc9140938ed2cbf5ec4d8a8beddd9a1 /indra/newview
parentc60eac25e5f1655e2c1d2c7ed2680da39db07f51 (diff)
Fix busted WIP check-in
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llpanelface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp
index d873cab59a..7ab9b4cb38 100755
--- a/indra/newview/llpanelface.cpp
+++ b/indra/newview/llpanelface.cpp
@@ -1513,8 +1513,8 @@ void LLPanelFace::onSelectColor(const LLSD& data)
void LLPanelFace::onCommitMaterialsMedia(LLUICtrl* ctrl, void* userdata)
{
LLPanelFace* self = (LLPanelFace*) userdata;
- LLUUID specmap = getCurrentSpecularMap();
- LLUUID normmap = getCurrentNormalMap();
+ LLUUID specmap = self->getCurrentSpecularMap();
+ LLUUID normmap = self->getCurrentNormalMap();
self->updateShinyControls(!specmap.isNull(), true);
self->updateBumpyControls(!normmap.isNull(), true);
self->updateUI();