viewer#855 Xcode buildfix
parent
60d3dd98a4
commit
67a9d88646
|
|
@ -491,7 +491,7 @@ bool LLFloaterBvhPreview::handleMouseDown(S32 x, S32 y, MASK mask)
|
|||
//-----------------------------------------------------------------------------
|
||||
bool LLFloaterBvhPreview::handleMouseUp(S32 x, S32 y, MASK mask)
|
||||
{
|
||||
gFocusMgr.setMouseCapture(false);
|
||||
gFocusMgr.setMouseCapture(nullptr);
|
||||
gViewerWindow->showCursor();
|
||||
return LLFloater::handleMouseUp(x, y, mask);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -407,7 +407,7 @@ bool LLFloaterImagePreview::handleMouseDown(S32 x, S32 y, MASK mask)
|
|||
//-----------------------------------------------------------------------------
|
||||
bool LLFloaterImagePreview::handleMouseUp(S32 x, S32 y, MASK mask)
|
||||
{
|
||||
gFocusMgr.setMouseCapture(false);
|
||||
gFocusMgr.setMouseCapture(nullptr);
|
||||
gViewerWindow->showCursor();
|
||||
return LLFloater::handleMouseUp(x, y, mask);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -869,7 +869,7 @@ bool LLFloaterModelPreview::handleMouseDown(S32 x, S32 y, MASK mask)
|
|||
//-----------------------------------------------------------------------------
|
||||
bool LLFloaterModelPreview::handleMouseUp(S32 x, S32 y, MASK mask)
|
||||
{
|
||||
gFocusMgr.setMouseCapture(false);
|
||||
gFocusMgr.setMouseCapture(nullptr);
|
||||
gViewerWindow->showCursor();
|
||||
return LLFloater::handleMouseUp(x, y, mask);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1844,7 +1844,7 @@ LLInventoryPanel* LLInventoryPanel::getActiveInventoryPanel(bool auto_open)
|
|||
if (!floater_inventory)
|
||||
{
|
||||
LL_WARNS() << "Could not find My Inventory floater" << LL_ENDL;
|
||||
return false;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
LLSidepanelInventory *inventory_panel = LLFloaterSidePanelContainer::getPanel<LLSidepanelInventory>("inventory");
|
||||
|
|
|
|||
Loading…
Reference in New Issue