From caa1ec9545f5ac943e90f12d4a87f7a43e0eb15d Mon Sep 17 00:00:00 2001 From: Steve Lamerton Date: Mon, 8 Aug 2011 12:18:58 +0000 Subject: [PATCH] Note that CanCut / CanCopy / CanPaste are not currently supported on the OSX WebKit implementation. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/webview.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/interface/wx/webview.h b/interface/wx/webview.h index 392932261d..565a5aeaa9 100644 --- a/interface/wx/webview.h +++ b/interface/wx/webview.h @@ -381,16 +381,22 @@ public: /** Returns @true if the current selection can be copied. + + @note Tgis always returns @c false on the OSX WebKit backend. */ virtual bool CanCopy() = 0; /** Returns @true if the current selection can be cut. + + @note This always returns @c false on the OSX WebKit backend. */ virtual bool CanCut() = 0; /** Returns @true if data can be pasted. + + @note This always returns @c false on the OSX WebKit backend. */ virtual bool CanPaste() = 0;