diff options
author | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-06-17 14:59:27 -0700 |
---|---|---|
committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-06-17 14:59:27 -0700 |
commit | 041de2ee8546ccccb66e658707542d32d035cdaa (patch) | |
tree | 39c400f1d34486bf474cb79633ba8add7749aa49 /indra/newview/llfloatersnapshot.cpp | |
parent | efa555cc5c5fa0b3d25f37fd8782aff5874d3779 (diff) | |
parent | 3910ce512fb8092ceb77e8b44729bff46b93212c (diff) |
merge
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; } |