diff options
Diffstat (limited to 'xfa/fxfa/cxfa_fftextedit.h')
-rw-r--r-- | xfa/fxfa/cxfa_fftextedit.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/cxfa_fftextedit.h b/xfa/fxfa/cxfa_fftextedit.h index dd3801b4df..404d35ec18 100644 --- a/xfa/fxfa/cxfa_fftextedit.h +++ b/xfa/fxfa/cxfa_fftextedit.h @@ -51,8 +51,8 @@ class CXFA_FFTextEdit : public CXFA_FFField { bool CanCut() override; bool CanPaste() override; bool CanSelectAll() override; - bool Copy(WideString& wsCopy) override; - bool Cut(WideString& wsCut) override; + Optional<WideString> Copy() override; + Optional<WideString> Cut() override; bool Paste(const WideString& wsPaste) override; void SelectAll() override; void Delete() override; |