summaryrefslogtreecommitdiff
path: root/xfa/fxfa/cxfa_textlayout.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-08-21 20:52:02 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-21 20:52:02 +0000
commit7af775a00379e84c0da1ab81695583eb7daaec3a (patch)
treea302accbd2463976903b102f01db0c588b5e1859 /xfa/fxfa/cxfa_textlayout.cpp
parente4110926f26fcd9a906b2ceb722a4f3b50461130 (diff)
downloadpdfium-7af775a00379e84c0da1ab81695583eb7daaec3a.tar.xz
Change GetEmbbedObj() to return an Optional<WideString>.
Change "EmbbedObj" to "EmbeddedObj". Change-Id: Ia6a8ec45b4563b3ec64b91a10e087dbf32a8d8db Reviewed-on: https://pdfium-review.googlesource.com/40751 Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_textlayout.cpp')
-rw-r--r--xfa/fxfa/cxfa_textlayout.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/xfa/fxfa/cxfa_textlayout.cpp b/xfa/fxfa/cxfa_textlayout.cpp
index 346a316781..976988ee32 100644
--- a/xfa/fxfa/cxfa_textlayout.cpp
+++ b/xfa/fxfa/cxfa_textlayout.cpp
@@ -773,7 +773,10 @@ bool CXFA_TextLayout::LoadRichText(
while (iTabCount-- > 0)
wsText += L'\t';
} else {
- m_textParser.GetEmbbedObj(m_pTextProvider, pXMLNode, wsText);
+ Optional<WideString> obj =
+ m_textParser.GetEmbeddedObj(m_pTextProvider, pXMLNode);
+ if (obj)
+ wsText = *obj;
}
}