Browse Source

Fixed previous commit

Nicolas Petton 14 years ago
parent
commit
2cad17286a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      st/ide.st

+ 1 - 1
st/ide.st

@@ -462,7 +462,7 @@ methods
 	ifNil: [
 	    klass 
 		ifNil: [#()] 
-		ifNotNil: [class methodDictionary values]]
+		ifNotNil: [klass methodDictionary values]]
 	ifNotNil: [
 	    klass methodDictionary values select: [:each |
 		each category = selectedProtocol]]) sort: [:a :b | a selector > b selector]