Skip to content

Commit

Permalink
Merge 8b4f5ad
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvc committed May 21, 2024
2 parents d5170d4 + 8b4f5ad commit bcc3b38
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/GToolkit-Inspector/Context.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ Context >> gtStackFor: aView [
itemText: [ :anItem |
anItem isContext
ifTrue: [ anItem ]
ifFalse: [ anItem key asRopedText
ifFalse: [ anItem name asRopedText
append: ' := ' asRopedText;
foreground: BrGlamorousColors disabledButtonTextColor;
append: anItem value gtDisplayText ] ];
append: anItem description ] ];
send: [ :anItem | anItem isContext ifTrue: [ anItem ] ifFalse: [ anItem value ] ]
]

Expand Down
2 changes: 2 additions & 0 deletions src/GToolkit-Inspector/MessageTally.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ MessageTally >> children [

{ #category : #'*GToolkit-Inspector' }
MessageTally >> displayIdentifierOn: aStream [
<gtPharoPatch: #Pharo>

class displayStringOn: aStream.
self method methodClass ~~ class
ifTrue: [ aStream nextPut: $(; print: self method methodClass; nextPut: $) ].
Expand Down
2 changes: 2 additions & 0 deletions src/GToolkit-Inspector/MetacelloMCVersion.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Extension { #name : #MetacelloMCVersion }

{ #category : #'*GToolkit-Inspector' }
MetacelloMCVersion >> = aMetacelloVersion [
<gtPharoPatch: #Pharo>
"needed because the super implementation only checks the version number,
and we also need to ensure that we have the same configuration class"
^ (super = aMetacelloVersion) and: [
Expand All @@ -25,6 +26,7 @@ MetacelloMCVersion >> gtRPackages [

{ #category : #'*GToolkit-Inspector' }
MetacelloMCVersion >> hash [
<gtPharoPatch: #Pharo>
"needed because the super implementation only checks the version number,
and we also need to ensure that we have the same configuration class"

Expand Down
3 changes: 2 additions & 1 deletion src/GToolkit-Inspector/Semaphore.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Semaphore >> gtDisplayOn: aStream [

{ #category : #'*GToolkit-Inspector' }
Semaphore >> printOn: aStream [

<gtPharoPatch: #Pharo>

self printNameOn: aStream.
(self isEmpty and: [ excessSignals = 0 ]) ifTrue: [ ^ self ].
aStream nextPut: $(.
Expand Down
3 changes: 2 additions & 1 deletion src/GToolkit-Inspector/TestCaseAnnouncement.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Extension { #name : #TestCaseAnnouncement }

{ #category : #'*GToolkit-Inspector' }
TestCaseAnnouncement >> printOn: aStream [

<gtPharoPatch: #Pharo>

testCase printOn: aStream
]
3 changes: 2 additions & 1 deletion src/GToolkit-Inspector/TestCaseEnded.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ Extension { #name : #TestCaseEnded }

{ #category : #'*GToolkit-Inspector' }
TestCaseEnded >> printOn: aStream [

<gtPharoPatch: #Pharo>

aStream nextPutAll: 'ended '. "three extra spaces to match in list"
super printOn: aStream
]
3 changes: 2 additions & 1 deletion src/GToolkit-Inspector/TestCaseStarted.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ Extension { #name : #TestCaseStarted }

{ #category : #'*GToolkit-Inspector' }
TestCaseStarted >> printOn: aStream [

<gtPharoPatch: #Pharo>

aStream nextPutAll: 'started '.
super printOn: aStream
]

0 comments on commit bcc3b38

Please sign in to comment.