]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/textctrl.cpp
More theme goodies.
[wxWidgets.git] / src / gtk1 / textctrl.cpp
index 92360ca742984d9472ac32ab9d30253df9bdec21..4cef1e816857c61ced6274a5fbd63cf4ba8d9a12 100644 (file)
@@ -98,6 +98,8 @@ END_EVENT_TABLE()
 wxTextCtrl::wxTextCtrl()
 {
     m_modified = FALSE;
+    m_text =
+    m_vScrollbar = (GtkWidget *)NULL;
 }
 
 wxTextCtrl::wxTextCtrl( wxWindow *parent,
@@ -742,7 +744,7 @@ bool wxTextCtrl::CanCut() const
     // Can cut if there's a selection
     long from, to;
     GetSelection(& from, & to);
-    return (from != to) ;
+    return (from != to) && (IsEditable());
 }
 
 bool wxTextCtrl::CanPaste() const