mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 01:04:34 +08:00
Fix x coord Outlines
This commit is contained in:
@ -763,8 +763,7 @@ void getBookmarks(PDFDoc* pdfDoc, OutlineItem* pOutlineItem, NSWasm::CData& out,
|
||||
LinkAction* pLinkAction = pOutlineItem->getAction();
|
||||
if (!pLinkAction)
|
||||
return;
|
||||
LinkActionKind kind = pLinkAction->getKind();
|
||||
if (kind != actionGoTo)
|
||||
if (pLinkAction->getKind() != actionGoTo)
|
||||
return;
|
||||
|
||||
GString* str = ((LinkGoTo*)pLinkAction)->getNamedDest();
|
||||
|
||||
Reference in New Issue
Block a user