diff options
| author | Rye Mutt <rye@alchemyviewer.org> | 2024-07-26 06:19:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-26 13:19:34 +0300 |
| commit | 604cb4cb4dd71c0f90633e50d5b0108e3901c4ad (patch) | |
| tree | 71f6fbbd3278cebceb755c6543268b3cb7ef5d28 /indra/llui/llfolderview.cpp | |
| parent | bc50d2c7d57618846a6cb318cd12e006270b64ae (diff) | |
Reduce utf8 to wstring conversion and llwstring temporaries during text draw (#2115)
Diffstat (limited to 'indra/llui/llfolderview.cpp')
| -rw-r--r-- | indra/llui/llfolderview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfolderview.cpp b/indra/llui/llfolderview.cpp index 1d4ecbe9c9..388dc5b1ac 100644 --- a/indra/llui/llfolderview.cpp +++ b/indra/llui/llfolderview.cpp @@ -211,7 +211,7 @@ LLFolderView::LLFolderView(const Params& p) //clear label // go ahead and render root folder as usual // just make sure the label ("Inventory Folder") never shows up - mLabel = LLStringUtil::null; + mLabel.clear(); // Escape is handled by reverting the rename, not commiting it (default behavior) LLLineEditor::Params params; |
