diff options
author | Tonya Souther <tonya.souther@gmail.com> | 2013-01-31 14:49:11 -0600 |
---|---|---|
committer | Tonya Souther <tonya.souther@gmail.com> | 2013-01-31 14:49:11 -0600 |
commit | 132db13fb6bb6dd802d3ee000a10e91127403547 (patch) | |
tree | fb3cdda8b5b7a8be5b509bff09e5ba54449d625b /indra/newview/llpanelface.cpp | |
parent | c1b110dd1d002b2bcb340dad9350b9717e1ca325 (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.cpp | 4 |
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(); } |