From professional translators, enterprises, web pages and freely available translation repositories.
initofficeplugins() seems to be open in a thread so calling topwindow::open() will be dangerous.
initofficeplugins() seems to be open in a thread so calling topwindow::open() will be dangerous.
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
void filepreviewcmd::startinit() { //checkofficeplugins(false);//sync thread_.run(thisback1(checkofficeplugins, true));//acync } void filepreviewcmd::checkofficeplugins(bool preinit) { isxlsopen = sheet.isavailable("open"); isxlsms = sheet.isavailable("microsoft"); if (!isxlsms) isxlsopen = sheet.isavailable("open"); isdocms = doc.isavailable("microsoft"); if (!isdocms) isdocopen = doc.isavailable("open"); if (preinit) postcallback(thisback(initofficeplugins)); else initofficeplugins(); } void filepreviewcmd::initofficeplugins() { if (isxlsms) { sheet.init("microsoft"); } else if (isxlsopen) { sheet.init("open"); } if (isdocms) { doc.init("microsoft"); } else if (isdocopen) { doc.init("open"); } topwindow::open(); }
void filepreviewcmd::startinit() { //checkofficeplugins(false);//sync thread_.run(thisback1(checkofficeplugins, true));//acync } void filepreviewcmd::checkofficeplugins(bool preinit) { isxlsopen = sheet.isavailable("open"); isxlsms = sheet.isavailable("microsoft"); if (!isxlsms) isxlsopen = sheet.isavailable("open"); isdocms = doc.isavailable("microsoft"); if (!isdocms) isdocopen = doc.isavailable("open"); if (preinit) postcallback(thisback(initofficeplugins)); else initofficeplugins(); } void filepreviewcmd::initofficeplugins() { if (isxlsms) { sheet.init("microsoft"); } else if (isxlsopen) { sheet.init("open"); } if (isdocms) { doc.init("microsoft"); } else if (isdocopen) { doc.init("open"); } topwindow::open(); }
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting