summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_imagedata.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-11-20 20:28:53 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-20 20:28:53 +0000
commit71803d230109cb841a323c579082a5cbd6fcbe3c (patch)
treeb6f777e04fec69a05a8658728e54a73a48e5f120 /xfa/fxfa/parser/cxfa_imagedata.h
parent03d9180f30f2ba79ef48b4003306224428f4ad47 (diff)
downloadpdfium-71803d230109cb841a323c579082a5cbd6fcbe3c.tar.xz
Cleanup CXFA_{ExData|Image}Data Setter returns.
This CL changes the Set methods from {ExData|Image}Data which return bool but the return value is never used to return void instead. Change-Id: I0b6aa40e27839ffca21fdbcd6635d5a6224377e9 Reviewed-on: https://pdfium-review.googlesource.com/18790 Reviewed-by: Henrique Nakashima <hnakashima@chromium.org> Reviewed-by: Ryan Harrison <rharrison@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_imagedata.h')
-rw-r--r--xfa/fxfa/parser/cxfa_imagedata.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_imagedata.h b/xfa/fxfa/parser/cxfa_imagedata.h
index 45474260ab..b8e5141cd7 100644
--- a/xfa/fxfa/parser/cxfa_imagedata.h
+++ b/xfa/fxfa/parser/cxfa_imagedata.h
@@ -21,13 +21,13 @@ class CXFA_ImageData : public CXFA_DataData {
bool GetContent(WideString& wsText);
bool GetHref(WideString& wsHref);
- bool SetHref(const WideString& wsHref);
+ void SetHref(const WideString& wsHref);
XFA_ATTRIBUTEENUM GetTransferEncoding();
- bool SetTransferEncoding(XFA_ATTRIBUTEENUM iTransferEncoding);
+ void SetTransferEncoding(XFA_ATTRIBUTEENUM iTransferEncoding);
bool GetContentType(WideString& wsContentType);
- bool SetContentType(const WideString& wsContentType);
+ void SetContentType(const WideString& wsContentType);
private:
bool m_bDefValue;