Skip to content

Commit cb2aa05

Browse files
committed
GT Inspector: Fix Hook for Unary Presentation Generator
This code is (probably only) used by Magritte to declaratively create GT Inspector presentations. I (@seandenigris) [originally introduced it](moosetechnology/Moose#1130), but it seems to have been altered (I'm assuming accidentally, possibly as a result of a system-wide method rename, but can't tell for sure because the change seems to predate the move to GH).
1 parent e23e445 commit cb2aa05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GT-Inspector/ProtoObject.extension.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ ProtoObject >> gtInspectorPresentationsFromPragmas: aCollection In: composite in
5959
do: [ :eachPragma |
6060
eachPragma methodSelector numArgs = 0
6161
ifTrue: [ | presentationSource |
62-
presentationSource := self perform: eachPragma selector.
62+
presentationSource := self perform: eachPragma methodSelector.
6363
presentationSource glmPresentation
6464
cull: composite
6565
cull: aGTInspector

0 commit comments

Comments
 (0)