summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterdaycycle.h
diff options
context:
space:
mode:
authorSteven Bennetts <steve@lindenlab.com>2008-06-26 00:39:00 +0000
committerSteven Bennetts <steve@lindenlab.com>2008-06-26 00:39:00 +0000
commit25c10ed028da5c547b11f1f461916897272b0e6d (patch)
tree350a5858f8970b6e28b2dc395625d74d8bd597b2 /indra/newview/llfloaterdaycycle.h
parent6dd125d375b38455997a0c4b8747659f4c2351aa (diff)
QAR-628 merge string-cleanup-5 -r 90476:90508 -> release
dataserver-is-deprecated
Diffstat (limited to 'indra/newview/llfloaterdaycycle.h')
-rw-r--r--indra/newview/llfloaterdaycycle.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llfloaterdaycycle.h b/indra/newview/llfloaterdaycycle.h
index 91a649b97c..2e66c1c609 100644
--- a/indra/newview/llfloaterdaycycle.h
+++ b/indra/newview/llfloaterdaycycle.h
@@ -45,7 +45,7 @@ struct WLFloatControl;
struct LLWLSkyKey
{
public:
- LLString presetName;
+ std::string presetName;
F32 time;
};
@@ -60,7 +60,7 @@ public:
/// help button stuff
static void onClickHelp(void* data);
- void initHelpBtn(const char* name, const char* xml_alert);
+ void initHelpBtn(const std::string& name, const std::string& xml_alert);
/// initialize all
void initCallbacks(void);
@@ -93,7 +93,7 @@ public:
static void onAddKey(void* userData);
/// delete any and all reference to a preset
- void deletePreset(LLString& presetName);
+ void deletePreset(std::string& presetName);
/// delete a key frame
static void onDeleteKey(void* userData);
@@ -129,7 +129,7 @@ public:
static void syncTrack();
/// add a slider to the track
- static void addSliderKey(F32 time, const LLString& presetName);
+ static void addSliderKey(F32 time, const std::string& presetName);
private:
@@ -137,7 +137,7 @@ private:
static LLFloaterDayCycle* sDayCycle;
// map of sliders to parameters
- static std::map<LLString, LLWLSkyKey> sSliderToKey;
+ static std::map<std::string, LLWLSkyKey> sSliderToKey;
static const F32 sHoursPerDay;
};