summaryrefslogtreecommitdiff
path: root/indra/llui/llluafloater.cpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-09-26 09:00:48 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-09-26 09:00:48 -0400
commit988a0fdd1eedab24677ed517942a4ef20c830f08 (patch)
tree5cab73dee1e830afa89cc008c207525a1c742017 /indra/llui/llluafloater.cpp
parentdc0c6d396eb70392f294eea65975646dad662f6a (diff)
Fix a few more fsyspath conversions, removing explicit u8string().
Diffstat (limited to 'indra/llui/llluafloater.cpp')
-rw-r--r--indra/llui/llluafloater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llluafloater.cpp b/indra/llui/llluafloater.cpp
index 83e4c9c983..91c0cfeec9 100644
--- a/indra/llui/llluafloater.cpp
+++ b/indra/llui/llluafloater.cpp
@@ -301,7 +301,7 @@ void LLLuaFloater::postEvent(LLSD data, const std::string &event_name)
void LLLuaFloater::showLuaFloater(const LLSD &data)
{
fsyspath fs_path(data["xml_path"].asString());
- std::string path = fs_path.lexically_normal();
+ fsyspath path = fs_path.lexically_normal();
if (!fs_path.is_absolute())
{
std::string lib_path = gDirUtilp->getExpandedFilename(LL_PATH_SCRIPTS, "lua");