//static void LLFloaterAvatarList::callbackEject(S32 option, void* data) { LLFloaterAvatarList *self = LLFloaterAvatarList::sInstance; if (option == 0) { self->doCommand(cmd_eject); } else if (option == 1) { self->doCommand(cmd_ban); } }
//static void LLFloaterAvatarList::callbackFreeze(S32 option, void* data) { LLFloaterAvatarList *self = LLFloaterAvatarList::sInstance; if (option == 0) { self->doCommand(cmd_freeze); } else if (option == 1) { self->doCommand(cmd_unfreeze); } }
//static void LLFloaterAvatarList::callbackEject(const LLSD& notification, const LLSD& response) { S32 option = LLNotification::getSelectedOption(notification, response); LLFloaterAvatarList *self = LLFloaterAvatarList::sInstance; if (option == 0) { self->doCommand(cmd_eject); } else if (option == 1) { self->doCommand(cmd_ban); } }
//static void LLFloaterAvatarList::callbackEjectFromEstate(S32 option, void* data) { LLFloaterAvatarList *self = LLFloaterAvatarList::sInstance; if (option == 0) { self->doCommand(cmd_estate_eject); } }
// static void LLFloaterAvatarList::onClickProfile(void* userdata) { LLFloaterAvatarList *self = (LLFloaterAvatarList*)userdata; self->doCommand(cmd_profile); }