Skip to content

Commit

Permalink
Fix deprecated usage of StInspector
Browse files Browse the repository at this point in the history
Use the class that is not deprecated. This is also a pretty bad dependency :/ But I'll not fix it in this PR because I don't have the time.

This will allow to remove NewTools deprecated classed of P12
  • Loading branch information
jecisc committed Jun 14, 2024
1 parent 0ac6afe commit 9b3fe48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tool-Registry/PharoCommonTools.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ PharoCommonTools class >> settingsOn: aBuilder [
targetSelector: #tools;
getSelector: #inspectorTool;
setSelector: #inspectorTool:;
default: (self environment at: #StInspector);
default: (self environment at: #StInspectorPresenter);
label: 'Inspector';
domainValues: Smalltalk tools recentInspectorTools ];
with: [
Expand Down

0 comments on commit 9b3fe48

Please sign in to comment.