Skip to content

Commit

Permalink
Cleaning more tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Feb 8, 2025
1 parent e9ad12f commit d536568
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/NewTools-Finder/StFinderResult.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ StFinderResult >> browser [
"We should check how to do it via the stApplication but ok for now"


^ application tools browser
^ application toolNamed: #browser
]

{ #category : 'accessing' }
Expand Down Expand Up @@ -248,7 +248,7 @@ StFinderResult >> sendersAction [
StFinderResult >> versionBrowser [
"We should check how to do it via the stApplication but ok for now"

^ application tools versionBrowser
^ application toolNamed: #versionBrowser
]

{ #category : 'action' }
Expand Down
2 changes: 1 addition & 1 deletion src/NewTools-MethodBrowsers/SystemNavigation.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ SystemNavigation >> browseAllUsersOfClassOrTrait: class [
{ #category : '*NewTools-MethodBrowsers' }
SystemNavigation >> browseVersionsOf: aMethod [

self tools versionBrowser browseVersionsForMethod: aMethod
(self tools toolNamed: #versionBrowser) browseVersionsForMethod: aMethod
]
2 changes: 1 addition & 1 deletion src/NewTools-Playground/StPlaygroundPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ StPlaygroundPresenter class >> menuCommandOn: aBuilder [
<worldMenu>
(aBuilder item: #Playground)
parent: #InputOutput;
action: [ self currentApplication tools workspace open ];
action: [ (self currentApplication toolNamed: #workspace) open ];
order: 1;
keyText: 'o, p';
help: 'A window used as a scratchpad area where fragments of Pharo code can be entered, stored, edited, and evaluated.';
Expand Down
2 changes: 1 addition & 1 deletion src/NewTools-Spotter/StSpotter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ StSpotter class >> isShowingTips [
StSpotter class >> menuCommandOn: aBuilder [
<worldMenu>
(aBuilder item: #Spotter)
action: [ self currentApplication tools spotter open ];
action: [ (self currentApplication toolNamed: #spotter) open ];
keyText: 'Shift + Enter';
order: 1;
parent: #Searching;
Expand Down

0 comments on commit d536568

Please sign in to comment.