mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
Fix build
This commit is contained in:
@ -383,6 +383,12 @@ void CPdfFile::Sign(const double& dX, const double& dY, const double& dW, const
|
||||
return;
|
||||
m_pInternal->pWriter->Sign(dX, dY, dW, dH, wsPicturePath, pCertificate);
|
||||
}
|
||||
void CPdfFile::SetDocumentInfo(const std::wstring& wsTitle, const std::wstring& wsCreator, const std::wstring& wsSubject, const std::wstring& wsKeywords)
|
||||
{
|
||||
if (!m_pInternal->pWriter)
|
||||
return;
|
||||
m_pInternal->pWriter->SetDocumentInfo(wsTitle, wsCreator, wsSubject, wsKeywords);
|
||||
}
|
||||
void CPdfFile::RotatePage(int nRotate)
|
||||
{
|
||||
if (!m_pInternal->pWriter)
|
||||
|
||||
Reference in New Issue
Block a user