Compile fixes.. I thought I'd done this...

This commit is contained in:
Lirusaito
2013-02-15 07:53:51 -05:00
committed by Melanie
parent 45f3a171be
commit 11604ae5de
2 changed files with 2 additions and 2 deletions

View File

@@ -537,7 +537,7 @@ void LLFloaterProperties::refreshFromItem(LLInventoryItem* item)
childSetValue("CheckEveryoneCopy",LLSD((BOOL)(everyone_mask & PERM_COPY)));
childSetValue("CheckEveryoneMove",LLSD((BOOL)(everyone_mask & PERM_MOVE)));
childSetValue("CheckExport", everyone_mask & PERM_EXPORT);
childSetValue("CheckExport", (bool)(everyone_mask & PERM_EXPORT));
///////////////
// SALE INFO //

View File

@@ -1093,7 +1093,7 @@ void LLPanelPermissions::onCommitEveryoneCopy(LLUICtrl *ctrl, void *data)
void LLPanelPermissions::onCommitExport()
{
perm.setEveryoneBits(gAgent.getID(), gAgent.getGroupID(), childGetValue("checkbox allow export"), PERM_EXPORT);
LLSelectMgr::getInstance()->selectionSetObjectPermissions(PERM_EVERYONE, childGetValue("checkbox allow export"), PERM_EXPORT);
}
// static