diff options
author | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:34 -0500 |
commit | cd17687f01420952712a500107e0f93e7ab8d5f8 (patch) | |
tree | ce48c2b706f2c1176290e39fb555fbdf6648ce01 /linden/indra/newview/llclassifiedstatsresponder.h | |
parent | Second Life viewer sources 1.19.0.5 (diff) | |
download | meta-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.h | 4 |
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 @@ | |||
39 | class LLClassifiedStatsResponder : public LLHTTPClient::Responder | 39 | class LLClassifiedStatsResponder : public LLHTTPClient::Responder |
40 | { | 40 | { |
41 | public: | 41 | public: |
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 | ||
48 | protected: | 48 | protected: |
49 | LLViewHandle mClassifiedPanelHandle; | 49 | LLHandle<LLView> mClassifiedPanelHandle; |
50 | LLUUID mClassifiedID; | 50 | LLUUID mClassifiedID; |
51 | }; | 51 | }; |
52 | 52 | ||