修改lanxum帮助文档路径名

This commit is contained in:
yangjiaxuan 2022-05-26 17:26:07 +08:00
parent f3b3c39674
commit d3a4855b04
1 changed files with 14 additions and 14 deletions

View File

@ -2293,21 +2293,21 @@ void MainWindow::on_act_clearRoller_triggered()
void MainWindow::on_act_help_triggered() void MainWindow::on_act_help_triggered()
{ {
#if defined(HG_CMP_MSC) #if defined(HG_CMP_MSC)
#if defined(OEM_HANWANG) #if defined(OEM_HANWANG)
QString filename = QApplication::applicationDirPath() + "/HanvonScan_App_Help_manual.pdf"; QString filename = QApplication::applicationDirPath() + "/HanvonScan_App_Help_manual.pdf";
#elif defined(OEM_LISICHENG) #elif defined(OEM_LISICHENG)
QString filename = QApplication::applicationDirPath() + "/Lanxum_App_Help_manual.pdf"; QString filename = QApplication::applicationDirPath() + "/Lanxum_App_Help_manual.pdf";
#else
QString filename = QApplication::applicationDirPath() + "/HuaGoScan_App_Help_manual.pdf";
#endif
#else #else
QString filename = QApplication::applicationDirPath() + "/HuaGoScan_App_Help_manual.pdf"; #if defined(OEM_HANWANG)
#endif QString filename = "/opt/apps/com.hanvonchina.hanvonscan/entries/help/HanvonScan_App_Help_manual.pdf";
#else #elif defined(OEM_LISICHENG)
#if defined(OEM_HANWANG) QString filename = "/opt/apps/com.lanxumchina.lanxumscan/entries/help/LanxumScan_App_Help_manual.pdf";
QString filename = "/opt/apps/com.hanvonchina.hanvonscan/entries/help/HanvonScan_App_Help_manual.pdf"; #else
#elif defined(OEM_LISICHENG) QString filename = "/opt/apps/com.huagaochina.huagoscan/entries/help/HuaGoScan_App_Help_manual.pdf";
QString filename = "/opt/apps/com.lanxumchina.lanxumscan/entries/help/Lanxum_App_Help_manual.pdf"; #endif
#else
QString filename = "/opt/apps/com.huagaochina.huagoscan/entries/help/HuaGoScan_App_Help_manual.pdf";
#endif
#endif #endif
QFileInfo info(filename); QFileInfo info(filename);