diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llwldaycycle.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/newview/llwldaycycle.h')
-rw-r--r-- | linden/indra/newview/llwldaycycle.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/newview/llwldaycycle.h b/linden/indra/newview/llwldaycycle.h index 85e75c2..1438306 100644 --- a/linden/indra/newview/llwldaycycle.h +++ b/linden/indra/newview/llwldaycycle.h | |||
@@ -61,10 +61,10 @@ public: | |||
61 | ~LLWLDayCycle(); | 61 | ~LLWLDayCycle(); |
62 | 62 | ||
63 | /// load a day cycle | 63 | /// load a day cycle |
64 | void loadDayCycle(const LLString & fileName); | 64 | void loadDayCycle(const std::string & fileName); |
65 | 65 | ||
66 | /// load a day cycle | 66 | /// load a day cycle |
67 | void saveDayCycle(const LLString & fileName); | 67 | void saveDayCycle(const std::string & fileName); |
68 | 68 | ||
69 | /// clear keys | 69 | /// clear keys |
70 | void clearKeys(); | 70 | void clearKeys(); |
@@ -73,7 +73,7 @@ public: | |||
73 | /// add a new key frame to the day cycle | 73 | /// add a new key frame to the day cycle |
74 | /// returns true if successful | 74 | /// returns true if successful |
75 | /// no negative time | 75 | /// no negative time |
76 | bool addKey(F32 newTime, const LLString & paramName); | 76 | bool addKey(F32 newTime, const std::string & paramName); |
77 | 77 | ||
78 | /// adjust a key's placement in the day cycle | 78 | /// adjust a key's placement in the day cycle |
79 | /// returns true if successful | 79 | /// returns true if successful |
@@ -81,7 +81,7 @@ public: | |||
81 | 81 | ||
82 | /// adjust a key's parameter used | 82 | /// adjust a key's parameter used |
83 | /// returns true if successful | 83 | /// returns true if successful |
84 | bool changeKeyParam(F32 time, const LLString & paramName); | 84 | bool changeKeyParam(F32 time, const std::string & paramName); |
85 | 85 | ||
86 | /// remove a key from the day cycle | 86 | /// remove a key from the day cycle |
87 | /// returns true if successful | 87 | /// returns true if successful |
@@ -89,7 +89,7 @@ public: | |||
89 | 89 | ||
90 | /// get the first key time for a parameter | 90 | /// get the first key time for a parameter |
91 | /// returns false if not there | 91 | /// returns false if not there |
92 | bool getKey(const LLString & name, F32& key); | 92 | bool getKey(const std::string & name, F32& key); |
93 | 93 | ||
94 | /// get the param set at a given time | 94 | /// get the param set at a given time |
95 | /// returns true if found one | 95 | /// returns true if found one |
@@ -97,7 +97,7 @@ public: | |||
97 | 97 | ||
98 | /// get the name | 98 | /// get the name |
99 | /// returns true if it found one | 99 | /// returns true if it found one |
100 | bool getKeyedParamName(F32 time, LLString & name); | 100 | bool getKeyedParamName(F32 time, std::string & name); |
101 | 101 | ||
102 | }; | 102 | }; |
103 | 103 | ||