diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-01-05 15:40:40 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-05 20:55:18 +0000 |
commit | 245f80c4ae2bde11de8fdff54e736ec4e4296e0a (patch) | |
tree | 4e62bab9aabd17eb1f69e95f9755d5ddb2b144f2 /xfa/fxfa/cxfa_ffwidget.h | |
parent | a172cfb094fe1012d71d556552977c86f2ae639d (diff) | |
download | pdfium-245f80c4ae2bde11de8fdff54e736ec4e4296e0a.tar.xz |
Convert CFWL_Edit Cut & Copy out param to return
Change-Id: I99776deb809609f69275848ddb81706e2cc82c82
Reviewed-on: https://pdfium-review.googlesource.com/22370
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffwidget.h')
-rw-r--r-- | xfa/fxfa/cxfa_ffwidget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/cxfa_ffwidget.h b/xfa/fxfa/cxfa_ffwidget.h index 13372320b8..f52098301f 100644 --- a/xfa/fxfa/cxfa_ffwidget.h +++ b/xfa/fxfa/cxfa_ffwidget.h @@ -127,8 +127,8 @@ class CXFA_FFWidget : public CXFA_ContentLayoutItem { virtual bool CanSelectAll(); virtual bool CanDelete(); virtual bool CanDeSelect(); - virtual bool Copy(WideString& wsCopy); - virtual bool Cut(WideString& wsCut); + virtual Optional<WideString> Copy(); + virtual Optional<WideString> Cut(); virtual bool Paste(const WideString& wsPaste); virtual void SelectAll(); virtual void Delete(); |