Typo fix: onPatialExportConfirm should be onPartialExportConfirm

This commit is contained in:
Inusaito Sayori
2013-08-06 23:46:47 -04:00
parent 8fb8a1af34
commit cac18c1bc6

View File

@@ -105,7 +105,7 @@ namespace DAEExportUtil
filepicker->run(boost::bind(&saveImpl, daesaver, filepicker)); filepicker->run(boost::bind(&saveImpl, daesaver, filepicker));
} }
void onPatialExportConfirm(const LLSD& notification, const LLSD& response, DAESaver* daesaver, std::string name) void onPartialExportConfirm(const LLSD& notification, const LLSD& response, DAESaver* daesaver, std::string name)
{ {
if (LLNotificationsUtil::getSelectedOption(notification, response) == 0) // 0 - Proceed, first choice if (LLNotificationsUtil::getSelectedOption(notification, response) == 0) // 0 - Proceed, first choice
{ {
@@ -158,7 +158,7 @@ namespace DAEExportUtil
LLSD args; LLSD args;
args["TOTAL"] = total; args["TOTAL"] = total;
args["FAILED"] = total - included; args["FAILED"] = total - included;
LLNotificationsUtil::add("WavefrontExportPartial", args, LLSD(), boost::bind(&onPatialExportConfirm, _1, _2, daesaver, selection->getFirstNode()->mName.c_str() + file_ext)); LLNotificationsUtil::add("WavefrontExportPartial", args, LLSD(), boost::bind(&onPartialExportConfirm, _1, _2, daesaver, selection->getFirstNode()->mName.c_str() + file_ext));
return; return;
} }