# HG changeset patch # User Claus Gittinger # Date 1528529696 -7200 # Node ID 154e5460cf126dc670a2d547b17af136028d0a6b # Parent 445d04aafe6f882aa7ca367350f84c51feb12551 #DOCUMENTATION by cg class: Tools::CodeCompletionMenu comment/format in: #keyPress:x:y: diff -r 445d04aafe6f -r 154e5460cf12 Tools__CodeCompletionMenu.st --- a/Tools__CodeCompletionMenu.st Fri Jun 08 12:14:21 2018 +0200 +++ b/Tools__CodeCompletionMenu.st Sat Jun 09 09:34:56 2018 +0200 @@ -1,3 +1,5 @@ +"{ Encoding: utf8 }" + " COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague All Rights Reserved @@ -158,15 +160,16 @@ ^self ]. key == #Tab ifTrue:[ - "/self tabKeyPressX:x y:y. - Transcript showCR:'Tab-completion broken. Disabled'. - ^self. + "/self tabKeyPressX:x y:y. + Transcript showCR:'Tab-completion broken. Disabled'. + ^self. ]. ^super keyPress:key x:x y:y "Created: / 25-05-2005 / 19:57:27 / janfrog" "Modified: / 22-03-2006 / 21:12:35 / janfrog" + "Modified (format): / 09-06-2018 / 09:30:34 / Claus Gittinger" ! mapped @@ -303,10 +306,10 @@ !CodeCompletionMenu class methodsFor:'documentation'! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeCompletionMenu.st,v 1.6 2014-02-18 17:00:43 stefan Exp $' + ^ '$Header$' ! version_SVN - ^ '$Id: Tools__CodeCompletionMenu.st,v 1.6 2014-02-18 17:00:43 stefan Exp $' + ^ '$Id$' ! !