diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2023-03-21 19:19:58 +0200 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2023-03-21 19:19:58 +0200 |
commit | 19e9b5d488e5478d6c5ecbb85000e6da3e6124bb (patch) | |
tree | 2316d85764023d5060675357338929fa39b3da3f /indra/newview/llpanelmaininventory.cpp | |
parent | 1eab3247111e66a3b81153173d1624a5c1c9fb72 (diff) |
SL-19379 build fix
Diffstat (limited to 'indra/newview/llpanelmaininventory.cpp')
-rw-r--r-- | indra/newview/llpanelmaininventory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index a867077ab0..2816a2dc89 100644 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -116,7 +116,7 @@ LLPanelMainInventory::LLPanelMainInventory(const LLPanel::Params& p) mNeedUploadCost(true), mMenuViewDefault(NULL), mSingleFolderMode(false), - mViewMode(VIEW_LIST), + mViewMode(MODE_LIST), mListViewRootUpdatedConnection(), mGalleryRootUpdatedConnection() { @@ -1689,11 +1689,11 @@ void LLPanelMainInventory::onCustomAction(const LLSD& userdata) if (command_name == "list_view") { - setViewMode(VIEW_LIST); + setViewMode(MODE_LIST); } if (command_name == "gallery_view") { - setViewMode(VIEW_GALLERY); + setViewMode(MODE_GALLERY); } } |