diff options
Diffstat (limited to 'linden/indra/newview/floatervoicelicense.cpp')
-rw-r--r-- | linden/indra/newview/floatervoicelicense.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/newview/floatervoicelicense.cpp b/linden/indra/newview/floatervoicelicense.cpp index 4004290..840a9e6 100644 --- a/linden/indra/newview/floatervoicelicense.cpp +++ b/linden/indra/newview/floatervoicelicense.cpp | |||
@@ -63,10 +63,10 @@ FloaterVoiceLicense::FloaterVoiceLicense(const LLSD& key) | |||
63 | 63 | ||
64 | // helper class that trys to download a URL from a web site and calls a method | 64 | // helper class that trys to download a URL from a web site and calls a method |
65 | // on parent class indicating if the web server is working or not | 65 | // on parent class indicating if the web server is working or not |
66 | class LLIamHere : public LLHTTPClient::Responder | 66 | class LLIamHereVoice : public LLHTTPClient::Responder |
67 | { | 67 | { |
68 | private: | 68 | private: |
69 | LLIamHere( FloaterVoiceLicense* parent ) : | 69 | LLIamHereVoice( FloaterVoiceLicense* parent ) : |
70 | mParent( parent ) | 70 | mParent( parent ) |
71 | {} | 71 | {} |
72 | 72 | ||
@@ -74,9 +74,9 @@ class LLIamHere : public LLHTTPClient::Responder | |||
74 | 74 | ||
75 | public: | 75 | public: |
76 | 76 | ||
77 | static boost::intrusive_ptr< LLIamHere > build( FloaterVoiceLicense* parent ) | 77 | static boost::intrusive_ptr< LLIamHereVoice > build( FloaterVoiceLicense* parent ) |
78 | { | 78 | { |
79 | return boost::intrusive_ptr< LLIamHere >( new LLIamHere( parent ) ); | 79 | return boost::intrusive_ptr< LLIamHereVoice >( new LLIamHereVoice( parent ) ); |
80 | }; | 80 | }; |
81 | 81 | ||
82 | virtual void setParent( FloaterVoiceLicense* parentIn ) | 82 | virtual void setParent( FloaterVoiceLicense* parentIn ) |
@@ -105,7 +105,7 @@ class LLIamHere : public LLHTTPClient::Responder | |||
105 | 105 | ||
106 | // this is global and not a class member to keep crud out of the header file | 106 | // this is global and not a class member to keep crud out of the header file |
107 | namespace { | 107 | namespace { |
108 | boost::intrusive_ptr< LLIamHere > gResponsePtr = 0; | 108 | boost::intrusive_ptr< LLIamHereVoice > gResponsePtr = 0; |
109 | }; | 109 | }; |
110 | 110 | ||
111 | BOOL FloaterVoiceLicense::postBuild() | 111 | BOOL FloaterVoiceLicense::postBuild() |
@@ -128,7 +128,7 @@ BOOL FloaterVoiceLicense::postBuild() | |||
128 | // start to observe it so we see navigate complete events | 128 | // start to observe it so we see navigate complete events |
129 | web_browser->addObserver( this ); | 129 | web_browser->addObserver( this ); |
130 | 130 | ||
131 | gResponsePtr = LLIamHere::build( this ); | 131 | gResponsePtr = LLIamHereVoice::build( this ); |
132 | LLHTTPClient::get( getString( "real_url" ), gResponsePtr ); | 132 | LLHTTPClient::get( getString( "real_url" ), gResponsePtr ); |
133 | } | 133 | } |
134 | 134 | ||