CodeView.st
changeset 4586 0678021a7151
parent 4276 88d3182dc760
child 4594 ef0af7d8e4c6
--- a/CodeView.st	Tue Apr 30 20:19:17 2013 +0200
+++ b/CodeView.st	Tue Apr 30 20:21:27 2013 +0200
@@ -78,7 +78,7 @@
 !CodeView class methodsFor:'others'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg/CodeView.st,v 1.62 2011-07-01 13:05:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/CodeView.st,v 1.63 2013-04-30 18:21:27 cg Exp $'
 ! !
 
 !CodeView methodsFor:'accessing'!
@@ -173,14 +173,11 @@
 keyPress:key x:x y:y
     "catch keyboard shortcuts"
 
-    <resource: #keyboard (#Format #Explain #Help 
-                          #CommentSelection #UncommentSelection)>
+    <resource: #keyboard (#Format #Explain #Help)>
 
     (key == #Format)  ifTrue:[self format. ^ self].
     (key == #Explain) ifTrue:[self explain. ^ self].
     (key == #Help)    ifTrue:[self explain. ^ self].
-    (key == #CommentSelection)    ifTrue:[self commentSelection. ^ self].
-    (key == #UncommentSelection)  ifTrue:[self uncommentSelection. ^ self].
 
     super keyPress:key x:x y:y
 
@@ -329,5 +326,6 @@
 !CodeView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/CodeView.st,v 1.62 2011-07-01 13:05:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/CodeView.st,v 1.63 2013-04-30 18:21:27 cg Exp $'
 ! !
+