diff options
author | dolphin <dolphin@lindenlab.com> | 2013-09-09 10:26:18 -0700 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2013-09-09 10:26:18 -0700 |
commit | 541e92c3653e112ec54ea322c9c5c54cacb0fd21 (patch) | |
tree | da57c2e890d030798f31080b27ba4b6b97996baf | |
parent | ece98188a8e5c76adddf884886f44b6fc9c5ae21 (diff) |
Added some explicitness for the mac build
-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) { } |