aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterdaycycle.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llfloaterdaycycle.h
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-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/llfloaterdaycycle.h')
-rw-r--r--linden/indra/newview/llfloaterdaycycle.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/newview/llfloaterdaycycle.h b/linden/indra/newview/llfloaterdaycycle.h
index edddbb5..4c6abab 100644
--- a/linden/indra/newview/llfloaterdaycycle.h
+++ b/linden/indra/newview/llfloaterdaycycle.h
@@ -45,7 +45,7 @@ struct WLFloatControl;
45struct LLWLSkyKey 45struct LLWLSkyKey
46{ 46{
47public: 47public:
48 LLString presetName; 48 std::string presetName;
49 F32 time; 49 F32 time;
50}; 50};
51 51
@@ -60,7 +60,7 @@ public:
60 60
61 /// help button stuff 61 /// help button stuff
62 static void onClickHelp(void* data); 62 static void onClickHelp(void* data);
63 void initHelpBtn(const char* name, const char* xml_alert); 63 void initHelpBtn(const std::string& name, const std::string& xml_alert);
64 64
65 /// initialize all 65 /// initialize all
66 void initCallbacks(void); 66 void initCallbacks(void);
@@ -93,7 +93,7 @@ public:
93 static void onAddKey(void* userData); 93 static void onAddKey(void* userData);
94 94
95 /// delete any and all reference to a preset 95 /// delete any and all reference to a preset
96 void deletePreset(LLString& presetName); 96 void deletePreset(std::string& presetName);
97 97
98 /// delete a key frame 98 /// delete a key frame
99 static void onDeleteKey(void* userData); 99 static void onDeleteKey(void* userData);
@@ -129,7 +129,7 @@ public:
129 static void syncTrack(); 129 static void syncTrack();
130 130
131 /// add a slider to the track 131 /// add a slider to the track
132 static void addSliderKey(F32 time, const LLString& presetName); 132 static void addSliderKey(F32 time, const std::string& presetName);
133 133
134private: 134private:
135 135
@@ -137,7 +137,7 @@ private:
137 static LLFloaterDayCycle* sDayCycle; 137 static LLFloaterDayCycle* sDayCycle;
138 138
139 // map of sliders to parameters 139 // map of sliders to parameters
140 static std::map<LLString, LLWLSkyKey> sSliderToKey; 140 static std::map<std::string, LLWLSkyKey> sSliderToKey;
141 141
142 static const F32 sHoursPerDay; 142 static const F32 sHoursPerDay;
143}; 143};