diff options
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterexperienceprofile.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llfloaterexperienceprofile.cpp b/indra/newview/llfloaterexperienceprofile.cpp index 292f6f0952..e1e4039626 100644 --- a/indra/newview/llfloaterexperienceprofile.cpp +++ b/indra/newview/llfloaterexperienceprofile.cpp @@ -109,7 +109,7 @@ public: class ExperienceUpdateResponder : public HandleResponder<LLFloaterExperienceProfile> { public: - ExperienceUpdateResponder(const LLHandle<LLFloaterExperienceProfile>& parent):HandleResponder(parent) + ExperienceUpdateResponder(const LLHandle<LLFloaterExperienceProfile>& parent):HandleResponder<LLFloaterExperienceProfile>(parent) { } @@ -128,7 +128,7 @@ public: class ExperiencePreferencesResponder : public HandleResponder<LLFloaterExperienceProfile> { public: - ExperiencePreferencesResponder(const LLHandle<LLFloaterExperienceProfile>& parent):HandleResponder(parent) + ExperiencePreferencesResponder(const LLHandle<LLFloaterExperienceProfile>& parent):HandleResponder<LLFloaterExperienceProfile>(parent) { } @@ -147,7 +147,7 @@ public: class IsAdminResponder : public HandleResponder<LLFloaterExperienceProfile> { public: - IsAdminResponder(const LLHandle<LLFloaterExperienceProfile>& parent):HandleResponder(parent) + IsAdminResponder(const LLHandle<LLFloaterExperienceProfile>& parent):HandleResponder<LLFloaterExperienceProfile>(parent) { } |