-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
squeak: Restore compatibility for UIManager accessor again
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
.../SmalltalkCI-Squeak-Core.package/SmalltalkCISqueak.class/class/chooseOptionFrom.title..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
helpers | ||
chooseOptionFrom: aList title: aString | ||
|
||
^ (Project uiManager respondsTo: #chooseOptionFrom:title:) | ||
ifFalse: ["< ToolBuilder-Kernel-tpr.157" Project uiManager chooseFrom: aList title: aString] | ||
ifTrue: [Project uiManager chooseOptionFrom: aList title: aString] | ||
^ (UIManager default respondsTo: #chooseOptionFrom:title:) | ||
ifFalse: ["< ToolBuilder-Kernel-tpr.157" UIManager default chooseFrom: aList title: aString] | ||
ifTrue: [UIManager default chooseOptionFrom: aList title: aString] |