summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelface.cpp
diff options
context:
space:
mode:
authorTonya Souther <tonya.souther@gmail.com>2013-01-31 14:49:11 -0600
committerTonya Souther <tonya.souther@gmail.com>2013-01-31 14:49:11 -0600
commit132db13fb6bb6dd802d3ee000a10e91127403547 (patch)
treefb3cdda8b5b7a8be5b509bff09e5ba54449d625b /indra/newview/llpanelface.cpp
parentc1b110dd1d002b2bcb340dad9350b9717e1ca325 (diff)
Fixing VC++ compile error: calling a static routine doesn't need the "this" pointer
Diffstat (limited to 'indra/newview/llpanelface.cpp')
-rw-r--r--indra/newview/llpanelface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp
index 4f61d5bbb6..474fa9d58e 100644
--- a/indra/newview/llpanelface.cpp
+++ b/indra/newview/llpanelface.cpp
@@ -1573,8 +1573,8 @@ void LLPanelFace::updateAlphaControls(LLUICtrl* ctrl, void* userdata)
// static
void LLPanelFace::onCommitAlphaMode(LLUICtrl* ctrl, void* userdata)
{
- LLPanelFace* self = (LLPanelFace*) userdata;
- self->updateAlphaControls(ctrl,userdata);
+ //LLPanelFace* self = (LLPanelFace*) userdata;
+ updateAlphaControls(ctrl,userdata);
llinfos << "updating material" << llendl;
//self->updateMaterial();
}