]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/textctrl.cpp
Added manual files
[wxWidgets.git] / src / msw / textctrl.cpp
index 82f29026b7c9e798d952c739e995f2841ddf0492..0ff8cd44072ce49697b7be7ba17fa900341b93e9 100644 (file)
@@ -493,7 +493,7 @@ bool wxTextCtrl::CanCopy() const
     // Can copy if there's a selection
     long from, to;
     GetSelection(& from, & to);
     // Can copy if there's a selection
     long from, to;
     GetSelection(& from, & to);
-    return (from != to);
+    return (from != to) ;
 }
 
 bool wxTextCtrl::CanCut() const
 }
 
 bool wxTextCtrl::CanCut() const
@@ -501,7 +501,7 @@ bool wxTextCtrl::CanCut() const
     // Can cut if there's a selection
     long from, to;
     GetSelection(& from, & to);
     // Can cut if there's a selection
     long from, to;
     GetSelection(& from, & to);
-    return (from != to);
+    return (from != to) && (IsEditable());
 }
 
 bool wxTextCtrl::CanPaste() const
 }
 
 bool wxTextCtrl::CanPaste() const