diff options
author | Cho <cho@lindenlab.com> | 2013-06-06 00:09:59 +0100 |
---|---|---|
committer | Cho <cho@lindenlab.com> | 2013-06-06 00:09:59 +0100 |
commit | 9232d919c8571743d9f5c899b80e2807f131f4d3 (patch) | |
tree | 009581aefa54cdf23391ecd3f557baf9967b49da /indra/newview/llwebprofile.h | |
parent | 0e6306e70dd5484cbb5c467a6ffc5f520f511489 (diff) |
removed unnecessary passing of image caption
Diffstat (limited to 'indra/newview/llwebprofile.h')
-rwxr-xr-x | indra/newview/llwebprofile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llwebprofile.h b/indra/newview/llwebprofile.h index c1c0c23540..63dccf80af 100755 --- a/indra/newview/llwebprofile.h +++ b/indra/newview/llwebprofile.h @@ -48,7 +48,7 @@ class LLWebProfile public: typedef boost::function<void(bool ok)> status_callback_t; - typedef boost::function<void(const std::string& image_url, const std::string& caption)> image_url_callback_t; + typedef boost::function<void(const std::string& image_url)> image_url_callback_t; static void uploadImage(LLPointer<LLImageFormatted> image, const std::string& caption, bool add_location, image_url_callback_t cb = image_url_callback_t()); static void setAuthCookie(const std::string& cookie); @@ -59,7 +59,7 @@ private: friend class LLWebProfileResponders::PostImageResponder; friend class LLWebProfileResponders::PostImageRedirectResponder; - static void post(LLPointer<LLImageFormatted> image, const LLSD& config, const std::string& url, const std::string& caption, image_url_callback_t cb); + static void post(LLPointer<LLImageFormatted> image, const LLSD& config, const std::string& url, image_url_callback_t cb); static void reportImageUploadStatus(bool ok); static std::string getAuthCookie(); |