diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-01-09 21:02:18 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-01-09 21:02:18 +0200 |
commit | 5b2d5a68542833fc2d89cc2917a378d63853975a (patch) | |
tree | f5459cbe732af40f7d5d3a18afce0ce6e64a73f1 /indra/llui/lltoolbar.cpp | |
parent | b3bb13b00647a2bb06b2657bd1f6110de3f5f039 (diff) |
DRTVWR-599 OSX buildfix
Diffstat (limited to 'indra/llui/lltoolbar.cpp')
-rw-r--r-- | indra/llui/lltoolbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lltoolbar.cpp b/indra/llui/lltoolbar.cpp index 04772ddc73..204b8b9984 100644 --- a/indra/llui/lltoolbar.cpp +++ b/indra/llui/lltoolbar.cpp @@ -218,7 +218,7 @@ void LLToolBar::initFromParams(const LLToolBar::Params& p) mCenteringStack->addChild(LLUICtrlFactory::create<LLLayoutPanel>(border_panel_p)); - for (const LLCommandId& id : p.commands) + for (const auto& id : p.commands) { addCommand(id); } |