summaryrefslogtreecommitdiff
path: root/indra/newview/llfacebookconnect.h
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-07-10 19:26:42 -0700
committerMerov Linden <merov@lindenlab.com>2013-07-10 19:26:42 -0700
commitb22b47fde552d2b1951858b7a4707876744cf396 (patch)
treebf09092235fc4a215faa039aff3c3852210b7d7e /indra/newview/llfacebookconnect.h
parent722dc13dcc481900b3110fe54f840b2292ea3976 (diff)
ACME-671 : Disable social panel UX while transaction (Post or Connection) is ongoing
Diffstat (limited to 'indra/newview/llfacebookconnect.h')
-rw-r--r--indra/newview/llfacebookconnect.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llfacebookconnect.h b/indra/newview/llfacebookconnect.h
index 7b6eb3644f..0f828cf43e 100644
--- a/indra/newview/llfacebookconnect.h
+++ b/indra/newview/llfacebookconnect.h
@@ -70,6 +70,7 @@ public:
void setConnectionState(EConnectionState connection_state);
bool isConnected() { return ((mConnectionState == FB_CONNECTED) || (mConnectionState == FB_POSTING) || (mConnectionState == FB_POSTED)); }
+ bool isTransactionOngoing() { return ((mConnectionState == FB_CONNECTION_IN_PROGRESS) || (mConnectionState == FB_POSTING)); }
EConnectionState getConnectionState() { return mConnectionState; }
S32 generation() { return mGeneration; }