Skip to content

Commit

Permalink
Merge branch 'pharo-spec:Pharo13' into p13-settings-browser-support
Browse files Browse the repository at this point in the history
  • Loading branch information
hernanmd authored Nov 21, 2024
2 parents 9f4f02a + 29c27a3 commit 021023e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/NewTools-Core/StPharoApplication.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ StPharoApplication >> newIconProvider [
{ #category : 'registration' }
StPharoApplication >> register: aTool as: aNameSelector [

Smalltalk tools register: aTool as: aNameSelector
self tools register: aTool as: aNameSelector
]

{ #category : 'private - running' }
Expand Down Expand Up @@ -136,5 +136,5 @@ StPharoApplication >> tools [
{ #category : 'registration' }
StPharoApplication >> unregisterToolWithRole: aName [

Smalltalk tools unregisterToolWithRole: aName
self tools unregisterToolWithRole: aName
]
2 changes: 1 addition & 1 deletion src/NewTools-FileBrowser/StFileSystemPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ StFileSystemPresenter class >> buildCommandsGroupWith: presenter forRoot: rootCo
StFileSystemPresenter class >> initialize [
"Register myself as the file list tool once I'm loaded."

Smalltalk tools fileListTool: self
self currentApplication tools fileListTool: self
]

{ #category : 'defaults' }
Expand Down
2 changes: 1 addition & 1 deletion src/NewTools-Inspector/StInspectorPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ StInspectorPresenter class >> preferredExtent: aPoint [
StInspectorPresenter class >> register [
<script>

self registerToolsOn: Smalltalk tools
self registerToolsOn: self currentApplication tools
]

{ #category : 'tools registry' }
Expand Down
2 changes: 1 addition & 1 deletion src/NewTools-MethodBrowsers/StMessageBrowser.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Class {
StMessageBrowser class >> beDefaultBrowser [
<script>

self registerToolsOn: Smalltalk tools
self registerToolsOn: self currentApplication tools
]

{ #category : 'instance creation' }
Expand Down
4 changes: 2 additions & 2 deletions src/NewTools-Playground/StPlaygroundPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ StPlaygroundPresenter class >> menuCommandOn: aBuilder [
<worldMenu>
(aBuilder item: #Playground)
parent: #InputOutput;
action: [ Smalltalk tools workspace open ];
action: [ self currentApplication tools 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 Expand Up @@ -125,7 +125,7 @@ StPlaygroundPresenter class >> register [
"Add ourselves to registry. See [Smalltalk tools]"
<script>

self registerToolsOn: Smalltalk tools
self registerToolsOn: self currentApplication tools
]

{ #category : 'tools registry' }
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 @@ -141,7 +141,7 @@ StSpotter class >> isShowingTips [
StSpotter class >> menuCommandOn: aBuilder [
<worldMenu>
(aBuilder item: #Spotter)
action: [ Smalltalk tools spotter open ];
action: [ self currentApplication tools spotter open ];
keyText: 'Shift + Enter';
order: 1;
parent: #Searching;
Expand Down

0 comments on commit 021023e

Please sign in to comment.