diff options
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 | ||