aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llclassifiedstatsresponder.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:34 -0500
committerJacek Antonelli2008-08-15 23:45:34 -0500
commitcd17687f01420952712a500107e0f93e7ab8d5f8 (patch)
treece48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llclassifiedstatsresponder.h
parentSecond Life viewer sources 1.19.0.5 (diff)
downloadmeta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.zip
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.gz
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.bz2
meta-impy-cd17687f01420952712a500107e0f93e7ab8d5f8.tar.xz
Second Life viewer sources 1.19.1.0
Diffstat (limited to 'linden/indra/newview/llclassifiedstatsresponder.h')
-rw-r--r--linden/indra/newview/llclassifiedstatsresponder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llclassifiedstatsresponder.h b/linden/indra/newview/llclassifiedstatsresponder.h
index ab219b7..cedd481 100644
--- a/linden/indra/newview/llclassifiedstatsresponder.h
+++ b/linden/indra/newview/llclassifiedstatsresponder.h
@@ -39,14 +39,14 @@
39class LLClassifiedStatsResponder : public LLHTTPClient::Responder 39class LLClassifiedStatsResponder : public LLHTTPClient::Responder
40{ 40{
41public: 41public:
42 LLClassifiedStatsResponder(LLViewHandle classified_panel_handle, LLUUID classified_id); 42 LLClassifiedStatsResponder(LLHandle<LLView> classified_panel_handle, LLUUID classified_id);
43 //If we get back a normal response, handle it here 43 //If we get back a normal response, handle it here
44 virtual void result(const LLSD& content); 44 virtual void result(const LLSD& content);
45 //If we get back an error (not found, etc...), handle it here 45 //If we get back an error (not found, etc...), handle it here
46 virtual void error(U32 status, const std::string& reason); 46 virtual void error(U32 status, const std::string& reason);
47 47
48protected: 48protected:
49 LLViewHandle mClassifiedPanelHandle; 49 LLHandle<LLView> mClassifiedPanelHandle;
50 LLUUID mClassifiedID; 50 LLUUID mClassifiedID;
51}; 51};
52 52