diff options
author | Steven Bennetts <steve@lindenlab.com> | 2008-06-26 00:39:00 +0000 |
---|---|---|
committer | Steven Bennetts <steve@lindenlab.com> | 2008-06-26 00:39:00 +0000 |
commit | 25c10ed028da5c547b11f1f461916897272b0e6d (patch) | |
tree | 350a5858f8970b6e28b2dc395625d74d8bd597b2 /indra/newview/llfloateranimpreview.cpp | |
parent | 6dd125d375b38455997a0c4b8747659f4c2351aa (diff) |
QAR-628 merge string-cleanup-5 -r 90476:90508 -> release
dataserver-is-deprecated
Diffstat (limited to 'indra/newview/llfloateranimpreview.cpp')
-rw-r--r-- | indra/newview/llfloateranimpreview.cpp | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/indra/newview/llfloateranimpreview.cpp b/indra/newview/llfloateranimpreview.cpp index 1e0ebb7248..6d4ff5a1a7 100644 --- a/indra/newview/llfloateranimpreview.cpp +++ b/indra/newview/llfloateranimpreview.cpp @@ -79,7 +79,7 @@ const F32 MAX_CAMERA_ZOOM = 10.f; //----------------------------------------------------------------------------- // LLFloaterAnimPreview() //----------------------------------------------------------------------------- -LLFloaterAnimPreview::LLFloaterAnimPreview(const char* filename) : +LLFloaterAnimPreview::LLFloaterAnimPreview(const std::string& filename) : LLFloaterNameDesc(filename) { mLastSliderValue = 0.f; @@ -174,28 +174,28 @@ BOOL LLFloaterAnimPreview::postBuild() mPlayButton = getChild<LLButton>( "play_btn"); if (!mPlayButton) { - mPlayButton = new LLButton("play_btn", LLRect(0,0,0,0)); + mPlayButton = new LLButton(std::string("play_btn"), LLRect(0,0,0,0)); } mPlayButton->setClickedCallback(onBtnPlay); mPlayButton->setCallbackUserData(this); - mPlayButton->setImages("button_anim_play.tga", - "button_anim_play_selected.tga"); - mPlayButton->setDisabledImages("",""); + mPlayButton->setImages(std::string("button_anim_play.tga"), + std::string("button_anim_play_selected.tga")); + mPlayButton->setDisabledImages(LLStringUtil::null,LLStringUtil::null); mPlayButton->setScaleImage(TRUE); mStopButton = getChild<LLButton>( "stop_btn"); if (!mStopButton) { - mStopButton = new LLButton("stop_btn", LLRect(0,0,0,0)); + mStopButton = new LLButton(std::string("stop_btn"), LLRect(0,0,0,0)); } mStopButton->setClickedCallback(onBtnStop); mStopButton->setCallbackUserData(this); - mStopButton->setImages("button_anim_stop.tga", - "button_anim_stop_selected.tga"); - mStopButton->setDisabledImages("",""); + mStopButton->setImages(std::string("button_anim_stop.tga"), + std::string("button_anim_stop_selected.tga")); + mStopButton->setDisabledImages(LLStringUtil::null,LLStringUtil::null); mStopButton->setScaleImage(TRUE); @@ -224,7 +224,8 @@ BOOL LLFloaterAnimPreview::postBuild() //childSetCommitCallback("ease_out_time", onCommitEaseOut, this); //childSetValidate("ease_out_time", validateEaseOut); - if (!stricmp(strrchr(mFilename.c_str(), '.'), ".bvh")) + std::string exten = gDirUtilp->getExtension(mFilename); + if (exten == "bvh") { // loading a bvh file @@ -312,10 +313,10 @@ BOOL LLFloaterAnimPreview::postBuild() childSetValue("ease_in_time", LLSD(motionp->getEaseInDuration())); childSetValue("ease_out_time", LLSD(motionp->getEaseOutDuration())); setEnabled(TRUE); - char seconds_string[128]; /*Flawfinder: ignore*/ - snprintf(seconds_string, sizeof(seconds_string), " - %.2f seconds", motionp->getDuration()); /* Flawfinder: ignore */ + std::string seconds_string; + seconds_string = llformat(" - %.2f seconds", motionp->getDuration()); - setTitle(mFilename + LLString(seconds_string)); + setTitle(mFilename + std::string(seconds_string)); } else { @@ -939,8 +940,8 @@ void LLFloaterAnimPreview::refresh() if (avatarp->areAnimationsPaused()) { - mPlayButton->setImages("button_anim_play.tga", - "button_anim_play_selected.tga"); + mPlayButton->setImages(std::string("button_anim_play.tga"), + std::string("button_anim_play_selected.tga")); } else @@ -953,16 +954,16 @@ void LLFloaterAnimPreview::refresh() childSetValue("playback_slider", fraction_complete); mLastSliderValue = fraction_complete; } - mPlayButton->setImages("button_anim_pause.tga", - "button_anim_pause_selected.tga"); + mPlayButton->setImages(std::string("button_anim_pause.tga"), + std::string("button_anim_pause_selected.tga")); } } else { mPauseRequest = avatarp->requestPause(); - mPlayButton->setImages("button_anim_play.tga", - "button_anim_play_selected.tga"); + mPlayButton->setImages(std::string("button_anim_play.tga"), + std::string("button_anim_play_selected.tga")); mStopButton->setEnabled(FALSE); } |