diff options
author | Cho <cho@lindenlab.com> | 2013-07-04 02:13:47 +0100 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-07-04 02:13:47 +0100 |
commit | 85824ebc0931d4ac89e375b35dbccd1295746e31 (patch) | |
tree | e618f114437c48e393bce0a1aeb5902dc90bef83 /indra/newview/llfacebookconnect.h | |
parent | fd4262541946770515ce8a486dd3a69245365def (diff) |
Removed share callbacks from LLFacebookConnect
Diffstat (limited to 'indra/newview/llfacebookconnect.h')
-rw-r--r-- | indra/newview/llfacebookconnect.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/indra/newview/llfacebookconnect.h b/indra/newview/llfacebookconnect.h index b37c713ae5..a06e53b90e 100644 --- a/indra/newview/llfacebookconnect.h +++ b/indra/newview/llfacebookconnect.h @@ -54,7 +54,6 @@ public: FB_POST_FAILED = 6 }; - typedef boost::function<void(bool ok)> share_callback_t; typedef boost::function<void()> content_updated_callback_t; void connectToFacebook(const std::string& auth_code = ""); // Initiate the complete FB connection. Please use checkConnectionToFacebook() in normal use. @@ -67,9 +66,6 @@ public: void sharePhoto(LLPointer<LLImageFormatted> image, const std::string& caption); void updateStatus(const std::string& message); - void setPostCheckinCallback(share_callback_t cb) { mPostCheckinCallback = cb; } - void setSharePhotoCallback(share_callback_t cb) { mSharePhotoCallback = cb; } - void setUpdateStatusCallback(share_callback_t cb) { mUpdateStatusCallback = cb; } void setContentUpdatedCallback(content_updated_callback_t cb) { mContentUpdatedCallback = cb;} void clearContent(); @@ -94,9 +90,6 @@ private: LLSD mContent; S32 mGeneration; - share_callback_t mPostCheckinCallback; - share_callback_t mSharePhotoCallback; - share_callback_t mUpdateStatusCallback; content_updated_callback_t mContentUpdatedCallback; static boost::scoped_ptr<LLEventPump> sStateWatcher; |