Fix compile
This commit is contained in:
@@ -385,9 +385,9 @@ public:
|
|||||||
using an arbitrary pointer or scalar type to std::string.
|
using an arbitrary pointer or scalar type to std::string.
|
||||||
*/
|
*/
|
||||||
//@{
|
//@{
|
||||||
LLSD(const void*); ///< construct from aribrary pointers
|
LLSD(const void*) = delete; ///< construct from aribrary pointers
|
||||||
void assign(const void*); ///< assign from arbitrary pointers
|
void assign(const void*) = delete; ///< assign from arbitrary pointers
|
||||||
LLSD& operator=(const void*); ///< assign from arbitrary pointers
|
LLSD& operator=(const void*) = delete; ///< assign from arbitrary pointers
|
||||||
|
|
||||||
bool has(Integer) const; ///< has() only works for Maps
|
bool has(Integer) const; ///< has() only works for Maps
|
||||||
//@}
|
//@}
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ void LLParticipantList::setupContextMenu()
|
|||||||
static LLMenuGL* menu = LLUICtrlFactory::getInstance()->buildMenu("menu_local_avs.xml", gMenuHolder);
|
static LLMenuGL* menu = LLUICtrlFactory::getInstance()->buildMenu("menu_local_avs.xml", gMenuHolder);
|
||||||
mAvatarList->setContextMenu(menu);
|
mAvatarList->setContextMenu(menu);
|
||||||
}
|
}
|
||||||
else mAvatarList->setContextMenu(0);
|
else mAvatarList->setContextMenu(LFIDBearer::AVATAR);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL LLParticipantList::postBuild()
|
BOOL LLParticipantList::postBuild()
|
||||||
|
|||||||
@@ -9327,7 +9327,7 @@ class ListStartCall : public view_listener_t
|
|||||||
{
|
{
|
||||||
bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata)
|
bool handleEvent(LLPointer<LLEvent> event, const LLSD& userdata)
|
||||||
{
|
{
|
||||||
(LFIDBearer::getActiveType == LFIDBearer::GROUP ? LLGroupActions::startCall : LLAvatarActions::startCall)(LFIDBearer::getActiveSelectedID());
|
(LFIDBearer::getActiveType() == LFIDBearer::GROUP ? LLGroupActions::startCall : LLAvatarActions::startCall)(LFIDBearer::getActiveSelectedID());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user