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/fwl/cfwl_edit.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/fwl/cfwl_edit.h')
-rw-r--r-- | xfa/fwl/cfwl_edit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fwl/cfwl_edit.h b/xfa/fwl/cfwl_edit.h index 6aedca8dec..9c667f5e14 100644 --- a/xfa/fwl/cfwl_edit.h +++ b/xfa/fwl/cfwl_edit.h @@ -80,8 +80,8 @@ class CFWL_Edit : public CFWL_Widget, public CFDE_TextEditEngine::Delegate { int32_t GetLimit() const; void SetLimit(int32_t nLimit); void SetAliasChar(wchar_t wAlias); - bool Copy(WideString& wsCopy); - bool Cut(WideString& wsCut); + Optional<WideString> Copy(); + Optional<WideString> Cut(); bool Paste(const WideString& wsPaste); bool Undo(); bool Redo(); |