diff options
| author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-10-15 22:46:23 +0200 | 
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2025-04-10 23:54:36 +0300 | 
| commit | a510a1da004a9299d5389e77bb9aa43ae1cc1c60 (patch) | |
| tree | eb733e9885bb025c45539abb8014a03e1bdb3aab /indra | |
| parent | 19347f7094c9448e02a021ae2d571b5fe8bfcc2e (diff) | |
Convert BOOL to bool
# Conflicts:
#	indra/newview/llagent.cpp
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llinventorypanel.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llmodelpreview.cpp | 1 | 
2 files changed, 1 insertions, 2 deletions
| diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp index 303df07ecf..aba17c99d0 100644 --- a/indra/newview/llinventorypanel.cpp +++ b/indra/newview/llinventorypanel.cpp @@ -2438,7 +2438,7 @@ void LLInventoryFavoritesItemsPanel::itemChanged(const LLUUID& id, U32 mask, con                          LLFavoritesCollector is_favorite;                          LLInventoryModel::cat_array_t cat_array;                          LLInventoryModel::item_array_t item_array; -                        gInventory.collectDescendentsIf(id, cat_array, item_array, FALSE, is_favorite); +                        gInventory.collectDescendentsIf(id, cat_array, item_array, false, is_favorite);                          for (LLInventoryModel::cat_array_t::const_iterator it = cat_array.begin(); it != cat_array.end(); ++it)                          {                              removeFavorite((*it)->getUUID(), *it); diff --git a/indra/newview/llmodelpreview.cpp b/indra/newview/llmodelpreview.cpp index 1412001a39..6fba0e4216 100644 --- a/indra/newview/llmodelpreview.cpp +++ b/indra/newview/llmodelpreview.cpp @@ -3325,7 +3325,6 @@ bool LLModelPreview::render()              fmp->setViewOptionEnabled("show_skin_weight", show_skin_weight);          }      } -    //if (this) return TRUE;      if (upload_skin && !has_skin_weights)      { //can't upload skin weights if model has no skin weights | 
