fix for macOS build
parent
8a07a887ad
commit
17f0ef8f99
|
|
@ -378,7 +378,7 @@ protected:
|
|||
virtual bool hasParent() override { return mParent != NULL; }
|
||||
|
||||
// <FS:ND/>
|
||||
virtual LLFolderViewModelItem* getParent() const { return mParent; }
|
||||
virtual LLFolderViewModelItem* getParent() const override { return mParent; }
|
||||
|
||||
S32 mSortVersion;
|
||||
bool mPassedFilter;
|
||||
|
|
|
|||
|
|
@ -575,9 +575,9 @@ void FSPanelCOFWearableOutfitListItem::updateItemWeight(U32 item_weight)
|
|||
}
|
||||
|
||||
//virtual
|
||||
void FSPanelCOFWearableOutfitListItem::updateItem(const std::string& name, EItemState item_state)
|
||||
void FSPanelCOFWearableOutfitListItem::updateItem(const std::string& name, bool favorite, EItemState item_state)
|
||||
{
|
||||
LLPanelWearableOutfitItem::updateItem(name, item_state);
|
||||
LLPanelWearableOutfitItem::updateItem(name, favorite, item_state);
|
||||
mWeightCtrl->setVisible(true);
|
||||
reshapeWidgets();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -256,7 +256,7 @@ public:
|
|||
|
||||
void updateItemWeight(U32 item_weight);
|
||||
|
||||
/*virtual*/ void updateItem(const std::string& name, EItemState item_state = IS_DEFAULT);
|
||||
/*virtual*/ void updateItem(const std::string& name, bool favorite, EItemState item_state = IS_DEFAULT);
|
||||
|
||||
/*virtual*/ void onMouseLeave(S32 x, S32 y, MASK mask);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue