Errors fixing

Trying not to use CGenericList
This commit is contained in:
Eugene Azimut
2021-07-03 01:38:56 +03:00
parent 4c84e5f9a3
commit 237fb15d19
4 changed files with 147 additions and 129 deletions

View File

@ -66,10 +66,10 @@ public:
CDocxRenderer(CApplicationFonts* pAppFonts);
~CDocxRenderer();
void CreateFile(const std::wstring& wsPath);
void Close();
HRESULT CreateNewFile(const std::wstring& wsPath);
HRESULT Close();
void SetTempFolder(const std::wstring& wsPath);
HRESULT SetTempFolder(const std::wstring& wsPath);
//----------------------------------------------------------------------------------------
// Тип рендерера
//----------------------------------------------------------------------------------------
@ -203,7 +203,7 @@ public:
virtual HRESULT CommandString(const LONG& lType, const std::wstring& sCommand);
// методы, которыми будет пользоваться конвертер
void SetTextAssociationType(const NSDocxRenderer::TextAssociationType& eType);
HRESULT SetTextAssociationType(const NSDocxRenderer::TextAssociationType& eType);
int Convert(IOfficeDrawingFile* pFile, const std::wstring& sDstFile);
private: