]> git.saurik.com Git - wxWidgets.git/commitdiff
Return true by default under OSX WebKit.
authorSteve Lamerton <steve.lamerton@gmail.com>
Wed, 17 Aug 2011 13:50:01 +0000 (13:50 +0000)
committerSteve Lamerton <steve.lamerton@gmail.com>
Wed, 17 Aug 2011 13:50:01 +0000 (13:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/osx/webview_webkit.h
interface/wx/webview.h

index 7ece4240316d3c9a4dc805e6ac901d7832d7c795..5278ca6ef4b7fcc3c7653a79cd031a1df2f0c298 100644 (file)
@@ -92,9 +92,9 @@ public:
     virtual void Redo();
 
     //Clipboard functions
-    virtual bool CanCut() const { return false; }
-    virtual bool CanCopy() const { return false; }
-    virtual bool CanPaste() const { return false; }
+    virtual bool CanCut() const { return true; }
+    virtual bool CanCopy() const { return true; }
+    virtual bool CanPaste() const { return true; }
     virtual void Cut();
     virtual void Copy();
     virtual void Paste();
index 1eaacdcaa1024f4bf501827506fc79bf92b22985..92b7fd70fc92d03246266e0f4a81fbb807962b3d 100644 (file)
@@ -393,21 +393,21 @@ public:
     /**
         Returns @true if the current selection can be copied.
         
-        @note This always returns @c false on the OSX WebKit backend.
+        @note This always returns @c true on the OSX WebKit backend.
     */
     virtual bool CanCopy() const = 0;
 
     /**
         Returns @true if the current selection can be cut.
         
-         @note This always returns @c false on the OSX WebKit backend.
+         @note This always returns @c true on the OSX WebKit backend.
     */
     virtual bool CanCut() const = 0;
 
     /**
         Returns @true if data can be pasted.
         
-        @note This always returns @c false on the OSX WebKit backend.
+        @note This always returns @c true on the OSX WebKit backend.
     */
     virtual bool CanPaste() const = 0;