diff --git a/bootstrap/scripts/4-build.sh b/bootstrap/scripts/4-build.sh old mode 100755 new mode 100644 diff --git a/bootstrap/scripts/runKernelTests.sh b/bootstrap/scripts/runKernelTests.sh old mode 100755 new mode 100644 diff --git a/src/Calypso-Browser/ClyBrowserMorph.class.st b/src/Calypso-Browser/ClyBrowserMorph.class.st index a5cb65afc31..aef363c10fb 100644 --- a/src/Calypso-Browser/ClyBrowserMorph.class.st +++ b/src/Calypso-Browser/ClyBrowserMorph.class.st @@ -311,7 +311,7 @@ ClyBrowserMorph >> close [ { #category : 'tools support' } ClyBrowserMorph >> confirmDiscardChanges [ - ^self confirm: 'Changes have not been saved. + ^ (Smalltalk at: #StPharoApplication) current confirm: 'Changes have not been saved. Is it OK to discard changes?' ] diff --git a/src/Calypso-SystemPlugins-ClassScripts-Queries/ClyClassScriptsExample.class.st b/src/Calypso-SystemPlugins-ClassScripts-Queries/ClyClassScriptsExample.class.st index 6b7de28048c..92f6396e331 100644 --- a/src/Calypso-SystemPlugins-ClassScripts-Queries/ClyClassScriptsExample.class.st +++ b/src/Calypso-SystemPlugins-ClassScripts-Queries/ClyClassScriptsExample.class.st @@ -9,40 +9,56 @@ Class { #package : 'Calypso-SystemPlugins-ClassScripts-Queries' } -{ #category : 'class initialization' } -ClyClassScriptsExample class >> initialize [ - self inform: 'it is class initialization example from ', self name -] - { #category : 'methods with examples' } ClyClassScriptsExample class >> methodWithExample [ + " + Don't use self inform: it does not exist anymore + But you can get the logic of the pragma. + - self inform: 'it is example string from ', self name. - - ^'it is example string' + ^ 'it is example string from ', self name. +" ] { #category : 'methods with samples' } ClyClassScriptsExample class >> methodWithSample [ + " +Don't use self inform: it does not exist anymore + But you can get the logic of the pragma. + - ^'it is string sample instance from ', self name + ^'it is string sample instance from ', self name" ] { #category : 'methods with scripts' } ClyClassScriptsExample class >> methodWithScript [ + " + Don't use self inform: it does not exist anymore + But you can get the logic of the pragma. +