# HG changeset patch # User Jan Vrany # Date 1379510624 -7200 # Node ID 5215c061491c91e3991b593b571b4e2929453634 # Parent 70dbfd5f726d7c3e438107970e211c24bae02462 Pass programming language when asking DWIM to complete code diff -r 70dbfd5f726d -r 5215c061491c Tools__CodeView2.st --- a/Tools__CodeView2.st Wed Sep 18 15:23:32 2013 +0200 +++ b/Tools__CodeView2.st Wed Sep 18 15:23:44 2013 +0200 @@ -1784,14 +1784,14 @@ ex proceed. ] do:[ self withWaitCursorDo:[ - DoWhatIMeanSupport codeCompletionForClass:cls context:nil codeView:self. + DoWhatIMeanSupport codeCompletionForLanguage: cls programmingLanguage class:cls context:nil codeView:self. ] ]. ^ self. "Modified: / 04-07-2006 / 18:48:26 / fm" "Modified: / 20-11-2006 / 12:30:59 / cg" - "Modified: / 16-02-2010 / 10:53:07 / Jan Vrany " + "Modified: / 18-09-2013 / 14:18:02 / Jan Vrany " ! reallyModified @@ -3615,15 +3615,15 @@ !CodeView2 class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.117 2013-09-06 12:25:17 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.118 2013-09-18 13:23:44 vrany Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.117 2013-09-06 12:25:17 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.118 2013-09-18 13:23:44 vrany Exp $' ! version_SVN - ^ '$Id: Tools__CodeView2.st,v 1.117 2013-09-06 12:25:17 cg Exp $' + ^ '$Id: Tools__CodeView2.st,v 1.118 2013-09-18 13:23:44 vrany Exp $' ! !