Update htmlrenderer test (ONLINE_WORD_TO_PDF case)

This commit is contained in:
KirillovIlya
2023-04-20 14:47:37 +05:00
parent af6802e035
commit e335a237a5

View File

@ -303,8 +303,9 @@ int main(int argc, char *argv[])
#ifdef ONLINE_WORD_TO_PDF
CPdfFile oPdfW(pFonts);
oPdfW.SetTempDirectory(L"D:\\test\\Document");
oPdfW.OnlineWordToPdf(L"D:\\test\\123.txt", L"D:\\test\\123.pdf");
oPdfW.CreatePdf();
oPdfW.SetTempDirectory(L"C:\\Git\\Test\\Temp");
oPdfW.OnlineWordToPdf(L"C:\\Git\\Test\\123.txt", L"C:\\Git\\Test\\123.pdf");
RELEASEOBJECT(pFonts);
return 0;
#endif