diff options
Diffstat (limited to 'indra/newview/llwldaycycle.h')
-rw-r--r-- | indra/newview/llwldaycycle.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/llwldaycycle.h b/indra/newview/llwldaycycle.h index b554c915fc..018774cf2b 100644 --- a/indra/newview/llwldaycycle.h +++ b/indra/newview/llwldaycycle.h @@ -61,10 +61,10 @@ public: ~LLWLDayCycle(); /// load a day cycle - void loadDayCycle(const LLString & fileName); + void loadDayCycle(const std::string & fileName); /// load a day cycle - void saveDayCycle(const LLString & fileName); + void saveDayCycle(const std::string & fileName); /// clear keys void clearKeys(); @@ -73,7 +73,7 @@ public: /// add a new key frame to the day cycle /// returns true if successful /// no negative time - bool addKey(F32 newTime, const LLString & paramName); + bool addKey(F32 newTime, const std::string & paramName); /// adjust a key's placement in the day cycle /// returns true if successful @@ -81,7 +81,7 @@ public: /// adjust a key's parameter used /// returns true if successful - bool changeKeyParam(F32 time, const LLString & paramName); + bool changeKeyParam(F32 time, const std::string & paramName); /// remove a key from the day cycle /// returns true if successful @@ -89,7 +89,7 @@ public: /// get the first key time for a parameter /// returns false if not there - bool getKey(const LLString & name, F32& key); + bool getKey(const std::string & name, F32& key); /// get the param set at a given time /// returns true if found one @@ -97,7 +97,7 @@ public: /// get the name /// returns true if it found one - bool getKeyedParamName(F32 time, LLString & name); + bool getKeyedParamName(F32 time, std::string & name); }; |