]> git.saurik.com Git - wxWidgets.git/commitdiff
Note that CanCut / CanCopy / CanPaste are not currently supported on the OSX WebKit...
authorSteve Lamerton <steve.lamerton@gmail.com>
Mon, 8 Aug 2011 12:18:58 +0000 (12:18 +0000)
committerSteve Lamerton <steve.lamerton@gmail.com>
Mon, 8 Aug 2011 12:18:58 +0000 (12:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/webview.h

index 392932261dd9e6b95bf82b5f1f7602d04df338f2..565a5aeaa95fd59a45dff15e3dff7f8b0af362fa 100644 (file)
@@ -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;