Fix bug 45334

This commit is contained in:
Svetlana Kulikova
2023-10-02 17:15:10 +03:00
parent 5a464c217c
commit f3bbfdb022
3 changed files with 21 additions and 8 deletions

View File

@ -803,7 +803,7 @@ int CPdfFile::GetRotate(int nPageIndex)
{
if (!m_pInternal->pReader)
return 0;
m_pInternal->pReader->GetRotate(nPageIndex);
return m_pInternal->pReader->GetRotate(nPageIndex);
}
void CPdfFile::DrawPageOnRenderer(IRenderer* pRenderer, int nPageIndex, bool* pBreak)
{