diff options
Diffstat (limited to 'indra/newview/llfloatersnapshot.cpp')
-rwxr-xr-x | indra/newview/llfloatersnapshot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloatersnapshot.cpp b/indra/newview/llfloatersnapshot.cpp index d60f9a48c4..0703600961 100755 --- a/indra/newview/llfloatersnapshot.cpp +++ b/indra/newview/llfloatersnapshot.cpp @@ -2250,9 +2250,9 @@ void LLFloaterSnapshot::update() // We need to pool on facebook connection as it might change any time static bool s_facebook_connected = false; - if (LLFacebookConnect::instance().getConnected() != s_facebook_connected) + if (LLFacebookConnect::instance().isConnected() != s_facebook_connected) { - s_facebook_connected = LLFacebookConnect::instance().getConnected(); + s_facebook_connected = LLFacebookConnect::instance().isConnected(); changed = true; } |