bool LLPanelGroup::apply() { // Pass this along to the currently visible tab. if (!mTabContainer) return false; LLPanelGroupTab* panelp = (LLPanelGroupTab*) mTabContainer->getCurrentPanel(); if (!panelp) return false; std::string mesg; if ( !panelp->needsApply(mesg) ) { // We don't need to apply anything. // We're done. return true; } // Ignore the needs apply message. // Try to do the actual apply. std::string apply_mesg; if ( panelp->apply( apply_mesg ) ) { // Force updating agent data. This should trigger updates // of the group data. gAgent.sendAgentDataUpdateRequest(); // Everything worked. We're done. return true; } // There was a problem doing the actual apply. // Inform the user. if ( !apply_mesg.empty() ) { LLSD args; args["MESSAGE"] = apply_mesg; LLNotifications::instance().add("GenericAlert", args); } return false; }
bool LLPanelGroup::apply() { // Pass this along to the currently visible tab. if (!mTabContainer) return false; LLPanelGroupTab* panelp = (LLPanelGroupTab*) mTabContainer->getCurrentPanel(); if (!panelp) return false; std::string mesg; if ( !panelp->needsApply(mesg) ) { // We don't need to apply anything. // We're done. return true; } // Ignore the needs apply message. // Try to do the actual apply. std::string apply_mesg; if ( panelp->apply( apply_mesg ) ) { // Everything worked. We're done. return true; } // There was a problem doing the actual apply. // Inform the user. if ( !apply_mesg.empty() ) { LLStringUtil::format_map_t args; args["[MESSAGE]"] = apply_mesg; gViewerWindow->alertXml("GenericAlert", args); } return false; }