Pharo-dev
By thread
pharo-dev@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
July 2013
- 89 participants
- 1150 messages
Re: [Pharo-dev] unwinding the stack
by Stéphane Ducasse
On Jul 23, 2013, at 12:25 AM, Eliot Miranda <eliot.miranda(a)gmail.com> wrote:
>
>
> On Mon, Jul 22, 2013 at 1:58 PM, Stéphane Ducasse <stephane.ducasse(a)inria.fr> wrote:
> Hi guys
>
> I'm trying to explain the following sentence (I wrote long time ago) and now I'm stuck
>
> "escaping blocks jump to their home contexts but do not unwind the stack after this point"
>
> Seems wrong to me. ^-returns in blocks return to the sender of the home context.
Yes I thought so too. I will remove this sentence because it is blurry and wrong. I thought I was wrong.
>
> especially I'm not clear anymore on the unwind the stack.
>
> The stack is unwound either by the VM executing the ^-return or by MethodCOntext>>#return:, sent from #aboutToReturn:to: if the ^-return found an intervening unwind context. (The VM sends aboutToReturn:to:).
Thanks
what is a intervening unwind context?
>
>
> HTH
> Eliot
>
>
> Stef
>
>
>
> --
> best,
> Eliot
July 22, 2013
Re: [Pharo-dev] unwinding the stack
by Eliot Miranda
On Mon, Jul 22, 2013 at 1:58 PM, Stéphane Ducasse <stephane.ducasse(a)inria.fr
> wrote:
> Hi guys
>
> I'm trying to explain the following sentence (I wrote long time ago) and
> now I'm stuck
>
> "escaping blocks jump to their home contexts but do not unwind the stack
> after this point"
>
Seems wrong to me. ^-returns in blocks return to the sender of the home
context.
> especially I'm not clear anymore on the unwind the stack.
>
The stack is unwound either by the VM executing the ^-return or by
MethodCOntext>>#return:, sent from #aboutToReturn:to: if the ^-return found
an intervening unwind context. (The VM sends aboutToReturn:to:).
HTH
Eliot
> Stef
>
--
best,
Eliot
July 22, 2013
Re: [Pharo-dev] unwinding the stack
by Camille Teruel
On 22 juil. 2013, at 22:58, Stéphane Ducasse wrote:
> Hi guys
>
> I'm trying to explain the following sentence (I wrote long time ago) and now I'm stuck
>
> "escaping blocks jump to their home contexts but do not unwind the stack after this point"
>
> especially I'm not clear anymore on the unwind the stack.
Maybe you meant that escaping blocks unwind the stack *up to* their home context.
>
> Stef
July 22, 2013
thisContext and block
by Stéphane Ducasse
Hi
when I execute the following
first
"Bexp new first"
| temp |
temp := 2.
[ temp.
thisContext inspect.] value.
^ temp
tmp in the inspector is nil and does not hold 2 and I was wondering why.
I thought that thisContext was returning the blockContext
In the outercontext of thisContext blockClosure, tmp is also nil.
first
"Bexp new first"
| temp |
temp := 2.
[ temp.
temp traceCr.
thisContext inspect.] value.
^ temp
output 2 on the transcript.
Stef
July 22, 2013
Re: [Pharo-dev] Metacello doubt
by Guido Chari
Thanks, i have some deadlines this week but i will have a look and give you
feedback asap.
2013/7/17 Dale K. Henrichs <dale.henrichs(a)gemtalksystems.com>
> Guido,
>
> I've just released Metacello Preview 1.0.0-beta.32.8[1] that includes a
> bugfix for your issue. Let me know if you need more information.
>
> Dale
>
> [1]
> http://gemstonesoup.wordpress.com/2013/07/17/metacello-preview-1-0-0-beta-3…
>
> ------------------------------
>
> *From: *"Guido Chari" <charig(a)gmail.com>
> *To: *"Pharo Development List" <pharo-dev(a)lists.pharo.org>
> *Sent: *Tuesday, July 2, 2013 12:42:40 PM
>
> *Subject: *Re: [Pharo-dev] Metacello doubt
>
> Ok, i will follow the issue on github. Thanks!
>
>
> 2013/7/1 Dale K. Henrichs <dale.henrichs(a)gemtalksystems.com>
>
>> Guido,
>>
>> I created a test case and it turns out that there _is_ a bug in the
>> bypass lock logic[1] . I'm going to push out a new version of the Metacello
>> Preview (1.0.0-beta.32.8) in the next day or so and the bugfix for Issue
>> #174 will _not_ be included in that release ...
>>
>> Dale
>>
>> [1] https://github.com/dalehenrich/metacello-work/issues/174
>>
>> ------------------------------
>>
>> *From: *"Guido Chari" <charig(a)gmail.com>
>> *To: *"Pharo Development List" <pharo-dev(a)lists.pharo.org>
>> *Sent: *Thursday, June 27, 2013 10:23:33 AM
>> *Subject: *Re: [Pharo-dev] Metacello doubt
>>
>> I'm in.
>>
>>
>> 2013/6/26 Dale K. Henrichs <dale.henrichs(a)gemtalksystems.com>
>>
>>>
>>>
>>> ------------------------------
>>>
>>> *From: *"Guido Chari" <charig(a)gmail.com>
>>> *To: *"Pharo Development List" <pharo-dev(a)lists.pharo.org>
>>> *Sent: *Wednesday, June 26, 2013 2:49:09 PM
>>>
>>> *Subject: *Re: [Pharo-dev] Metacello doubt
>>>
>>> I understood. Thanks for the answer Dale. The drawback in this case is
>>> to specify a particular dependency to AsmJit in my configuration. Also,
>>> perhaps is the right way since i realized i have a particular dependency on
>>> it.
>>>
>>> But this discussion makes me thing a little and so i have a new question.
>>>
>>> Form what I (mis) undestand from Metacello, when asking for a
>>> bleedingEdge version it loads only the baseline that specifies packages and
>>> then last version of every package specified there.
>>>
>>> As in the projects referenced on the baseline there is no need for
>>> specifying a version, and that's the case of nativeBoost configuration,
>>> wouldn't it be interesting to have some behavior (i mean i new method for
>>> loading like loadDeepSymbolic:) that not only load the symbolicVersion of
>>> the package asked, but also propagate that symbolicVersion (bleedingEdge in
>>> this case) to all the dependencies that don't specify a concrete version?
>>>
>>> Guido.
>>>
>>> Guido,
>>>
>>> With the Metacello Scripting API[1] I've taken a slightly different
>>> tack, but I think that it gets you to the same place.
>>>
>>> I am a big fan of deterministic loads, but I know that from a practical
>>> point of view developers need to have a certain amount of control over
>>> exactly what gets loaded into their DEVELOPMENT environments and they need
>>> to be able to exert this control without having to resort to editing
>>> configurations to match their specific requirements.
>>>
>>> I have accomplished this by arranging for a Notification to be signalled
>>> whenever a project is referenced during a load. The developer can use one
>>> or more of the onUpgrade:, onDowngrade: and onConflict: clauses in their
>>> load scripts to exert fine control over what happens on a project by
>>> project basis ...
>>>
>>> For your specific use case, I would think that you would want to use the
>>> `lock` command[2] and specify that you want to `lock` the projects
>>> (NativeBoost and AsmJit) to the #bleedingEdge version. I don't recall if
>>> I've got test cases for symbolic versions, but if you are seriously
>>> interested in taking the Scripting API for a spin, I'd be willing to write
>>> some additional tests using the #bleedingEdge symbolic version (if not
>>> already covered) and validate this use case...
>>>
>>> I am entering a phase where I will be doing some work on getting
>>> FileTree and Metacello up to snuff for Pharo3.0 so this would be a good
>>> time for me to add some test cases in anticipation of having some
>>> interested users ...
>>>
>>> I haven't released the Scripting API, because I need to have real users
>>> with real use cases take the API for a spin and validate the API. The
>>> Scripting API can be loaded into any version of Pharo/Squeak/GemStone and I
>>> think the Scripting API is (or will be) available in Pharo3.0.
>>>
>>> I'm looking forward to getting feedback as to how the API stands up to
>>> real use ...
>>>
>>> So let me know if you are interested in being another Scripting API
>>> guinea pig:)
>>>
>>> Dale
>>>
>>> [1]
>>> https://github.com/dalehenrich/metacello-work/blob/master/docs/MetacelloUse…
>>> [2]
>>> https://github.com/dalehenrich/metacello-work/blob/master/docs/MetacelloUse…
>>>
>>>
>>
>>
>
>
July 22, 2013
unwinding the stack
by Stéphane Ducasse
Hi guys
I'm trying to explain the following sentence (I wrote long time ago) and now I'm stuck
"escaping blocks jump to their home contexts but do not unwind the stack after this point"
especially I'm not clear anymore on the unwind the stack.
Stef
July 22, 2013
Re: [Pharo-dev] Monticello deleting all code
by Stéphane Ducasse
I'm trying to see what can be the source of problems
> Opps, sorry, I was too shocked to give proper information
>
> The image is a #20599. And I was using the latest pharo vm.
>
> Norbert
>
> Am 22.07.2013 um 17:46 schrieb Camillo Bruni <camillobruni(a)gmail.com>:
>
>> that sounds evil...
>> which pharo version?
>>
>> On 2013-07-22, at 17:44, Norbert Hartl <norbert(a)hartl.name> wrote:
>>> I've discovered a strange effect. I don't know why it happened but I want to save a modified package to a repository but looking at the "changed" in monticello it showed every class and method has been deleted. That is not true because the code is still there. Saving the package indeed removed everything for the monticello package. So my image was fine but loading the new package again removed all the code.
>>>
>>> Any ideas what might have gone wrong here? Or any ideas for a recheck of changes?
>>>
>>> Norbert
>>
>>
>
>
July 22, 2013
Re: [Pharo-dev] Monticello deleting all code
by Clément Bera
I don't know sometimes it happens when I click on the wrong repository on
monticello browser. Then the selected package is not present on this
uncorrect repository so it shows all method as deleted. (If it happened to
you after a huge amount of time spent on working on Pharo it might be that
:) )
What could also happen is if you ran a script to change package
informations or classes data / category. Then if your script call the
uncorrect class / RPackage method (like a method that does not trigger the
proper announcement because internal method), there might be some problem
with monticello packages.
Lastly it can be a pharo bug ... then we would need a case to reproduce it
to fix it...
2013/7/22 Norbert Hartl <norbert(a)hartl.name>
> Opps, sorry, I was too shocked to give proper information
>
> The image is a #20599. And I was using the latest pharo vm.
>
> Norbert
>
> Am 22.07.2013 um 17:46 schrieb Camillo Bruni <camillobruni(a)gmail.com>:
>
> > that sounds evil...
> > which pharo version?
> >
> > On 2013-07-22, at 17:44, Norbert Hartl <norbert(a)hartl.name> wrote:
> >> I've discovered a strange effect. I don't know why it happened but I
> want to save a modified package to a repository but looking at the
> "changed" in monticello it showed every class and method has been deleted.
> That is not true because the code is still there. Saving the package indeed
> removed everything for the monticello package. So my image was fine but
> loading the new package again removed all the code.
> >>
> >> Any ideas what might have gone wrong here? Or any ideas for a recheck
> of changes?
> >>
> >> Norbert
> >
> >
>
>
>
July 22, 2013
Re: [Pharo-dev] About abuse of inheritance
by Stéphane Ducasse
On Jul 22, 2013, at 5:30 PM, Paul Davidowitz <pdavidow(a)fastmail.fm> wrote:
> Stephane Ducasse had responded:
>
>> What is all api of Announcer?
> Announcer allSelectors
>
> But I would surely hope that private methods would be excluded from the
> API.
yes but conceptually we should think about API and polymorphism.
When I subclass I should behave more or less like my father and not be a punk.
> Or being that privacy is (unfortunately) not enforced by the system,
> there is no such practical notion?
>
> - Paul
>
July 22, 2013
[pharo-project/pharo-core] 60f1bb: 30290
by GitHub
Branch: refs/heads/3.0
Home: https://github.com/pharo-project/pharo-core
Commit: 60f1bb42240e4a63fb4d79fe62f137f409c67c9b
https://github.com/pharo-project/pharo-core/commit/60f1bb42240e4a63fb4d79fe…
Author: Jenkins Build Server <board(a)pharo-project.org>
Date: 2013-07-22 (Mon, 22 Jul 2013)
Changed paths:
M Metacello-Platform/MetacelloPharoPlatform.cls/instance/notification/do_displaying_.st
M Monticello-Loading/MCVersionLoader.cls/instance/loading/load.st
A RPackage-Core/RPackageSet.cls/class/accessing/withCacheDo_.st
M RPackage-Core/RPackageSet.cls/class/instance creation/named_.st
A RPackage-Core/RPackageSet.cls/class/private/basicNamed_.st
A RPackage-Core/RPackageSet.cls/class/private/cacheActive_.st
A RPackage-Core/RPackageSet.cls/class/private/cachePackageAt_ifAbsentPut_.st
A RPackage-Core/RPackageSet.cls/class/private/cachePackages.st
A RPackage-Core/RPackageSet.cls/class/private/resetCache.st
A RPackage-Core/RPackageSet.cls/class/testing/isCacheActive.st
A ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script125.st
A ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30290.st
M ScriptLoader30/ScriptLoader.cls/instance/public/commentForCurrentUpdate.st
Log Message:
-----------
30290
10393 Add RPackageSet cache
https://pharo.fogbugz.com/f/cases/10393
Commit: 6ec4257bc67f990b460614361d9d865dfc776fe0
https://github.com/pharo-project/pharo-core/commit/6ec4257bc67f990b46061436…
Author: Jenkins Build Server <board(a)pharo-project.org>
Date: 2013-07-22 (Mon, 22 Jul 2013)
Changed paths:
R Polymorph-Widgets-Themes/UIThemeWatery.cls/README.md
R Polymorph-Widgets-Themes/UIThemeWatery.cls/class/accessing/newDefaultSettings.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/class/accessing/themeName.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/class/testing/isAbstract.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/definition.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/basic-colors/taskbarActiveButtonColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/basic-colors/taskbarMinimizedButtonColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/buttonCornerStyleIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/buttonNormalBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/checkboxButtonNormalBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/checkboxButtonSelectedBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/textEntryCornerStyleIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarNormalButtonBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarNormalThumbBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarPagingAreaCornerStyleIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarPressedButtonBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarThumbCornerStyleIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/configureWindowBorderFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/drawTextAdornmentFor_color_on_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/windowPaneBorderStyleFor_in_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/worldMainDockingBarBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/scrollbarMinimumThumbThickness.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/tabLabelInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/treeLineWidth.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonFocusBoundsFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonSelectedPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/checkboxButtonNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/checkboxButtonSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonMouseOverFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/dropListFocusBoundsFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/menuItemInDockingBarSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/menuItemSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarImageColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarNormalButtonFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarNormalThumbFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/useScrollbarThumbShadow.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonPanelNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dialogWindowActiveFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dialogWindowInactiveFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dockingBarNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dropListNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/expanderTitleNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/paneColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/progressBarFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/progressBarProgressFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/resizerGripNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/splitterNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/splitterPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/stripesForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/tabLabelNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/tabLabelSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/taskbarFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/textEditorDisabledFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/textFieldNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/windowActiveFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/windowActiveTitleFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/windowInactiveFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/windowInactiveTitleFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/worldMainDockingBarNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/initializeForms.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newCheckboxMarkerForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newRadioButtonMarkerForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newStripesForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newTreeExpandedForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newTreeUnexpandedForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowCloseForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowCloseOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowInactiveControlForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMaximizeForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMaximizeOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMenuForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMenuOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMenuPassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMinimizeForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMinimizeOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/buttonLabelForText_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/configureWindowLabelAreaFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/createCollapseBoxFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/createExpandBoxFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/createMenuBoxFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowCloseOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowClosePassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMaximizeOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMaximizePassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMenuIconFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMenuOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMenuPassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMinimizeOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMinimizePassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/morph creation/newCloseControlIn_for_action_help_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/morph creation/newDialogPanelIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/morph creation/newFocusIndicatorMorphFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/morph creation/newTaskbarThumbnailIn_for_.st
M Polymorph-Widgets-Themes/UIThemeWatery2.cls/definition.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/basic-colors/taskbarActiveButtonColorFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/basic-colors/taskbarMinimizedButtonColorFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/buttonCornerStyleIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/textEntryCornerStyleIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-scrollbars/scrollbarNormalButtonBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-scrollbars/scrollbarPagingAreaCornerStyleIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-scrollbars/scrollbarPressedButtonBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/configureWindowBorderFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/drawTextAdornmentFor_color_on_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/windowPaneBorderStyleFor_in_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/worldMainDockingBarBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/scrollbarMinimumThumbThickness.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/tabLabelInsetFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/treeLineWidth.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonFocusBoundsFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonPressedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonSelectedPressedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonMouseOverFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/dropListFocusBoundsFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/menuItemInDockingBarSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/menuItemSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/useScrollbarThumbShadow.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/expanderTitleNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/progressBarFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/progressBarProgressFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/resizerGripNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/splitterNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/splitterPressedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/stripesForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/taskbarFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/textEditorDisabledFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/textFieldNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/windowActiveFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/worldMainDockingBarNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newCheckboxMarkerForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newRadioButtonMarkerForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newStripesForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newTreeExpandedForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newTreeUnexpandedForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowCloseForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowCloseOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowInactiveControlForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMaximizeForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMaximizeOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMenuForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMenuOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMenuPassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMinimizeForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMinimizeOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/buttonLabelForText_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/configureWindowLabelAreaFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/createCollapseBoxFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/createExpandBoxFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/createMenuBoxFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowCloseOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowClosePassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMaximizeOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMaximizePassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMenuIconFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMenuOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMenuPassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMinimizeOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMinimizePassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/morph creation/newCloseControlIn_for_action_help_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/morph creation/newDialogPanelIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/morph creation/newFocusIndicatorMorphFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/morph creation/newTaskbarThumbnailIn_for_.st
A ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script126.st
A ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30291.st
M ScriptLoader30/ScriptLoader.cls/instance/public/commentForCurrentUpdate.st
R Tools-Browser/Browser.cls/class/groups registration/addGroupForClasses_named_.st
R Tools-Browser/Browser.cls/class/groups registration/addGroupForPackage_.st
R Tools-Browser/Browser.cls/class/instance creation/newOnCategory_.st
R Tools-Browser/Browser.cls/instance/initialization/openAsMorphMessageEditing_.st
R Tools-Browser/Browser.cls/instance/initialization/openMessageEditString_.st
R Tools-Browser/Browser.cls/instance/message list/messageListSingleton.st
M Tools-File Contents Browser/FileContentsBrowser.cls/definition.st
R Tools-File Contents Browser/FileContentsBrowser.cls/instance/filein%2Ffileout/fileInPackage.st
R Tools-File Contents Browser/FileContentsBrowser.cls/instance/filein%2Ffileout/fileIntoNewChangeSet.st
R Tools-File Contents Browser/FileContentsBrowser.cls/instance/removing/removeUnmodifiedClasses.st
Log Message:
-----------
30291
4533 UIThemeWatery and UIThemeWatery2 should be merged...
https://pharo.fogbugz.com/f/cases/4533
11207 clean up some dead code in FileContentsBrowser
https://pharo.fogbugz.com/f/cases/11207
Commit: 7cbffa99076e0ab564a89982251e0b1401ac5bb0
https://github.com/pharo-project/pharo-core/commit/7cbffa99076e0ab564a89982…
Author: Jenkins Build Server <board(a)pharo-project.org>
Date: 2013-07-22 (Mon, 22 Jul 2013)
Changed paths:
M Polymorph-Widgets-Themes/PharoTheme.cls/definition.st
R Polymorph-Widgets-Themes/UITheme.cls/instance/defaults/editableDropListInsetFor_.st
R Polymorph-Widgets-Themes/UITheme.cls/instance/fill-styles-buttons/buttonPanelNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeVistary.cls/instance/defaults/editableDropListInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeVistary.cls/instance/fill-styles-buttons/buttonPanelNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/README.md
A Polymorph-Widgets-Themes/UIThemeWatery.cls/class/accessing/newDefaultSettings.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/class/accessing/themeName.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/definition.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/accessing/windowActiveDropShadowStyle.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/accessing/windowActiveDropShadowStyle_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/basic-colors/taskbarActiveButtonColorFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/basic-colors/taskbarButtonLabelColorFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/basic-colors/taskbarMinimizedButtonColorFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/buttonCornerStyleIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/buttonNormalBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/checkboxButtonDisabledBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/checkboxButtonNormalBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/checkboxButtonSelectedBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/dropListControlButtonWidth.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/expanderTitleControlButtonWidth.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/radioButtonCornerStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-buttons/textEntryCornerStyleIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarNormalButtonBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarNormalThumbBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarPagingAreaCornerStyleIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarPressedButtonBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles-scrollbars/scrollbarThumbCornerStyleIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/configureWindowBorderFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/drawTextAdornmentFor_color_on_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/dropListNormalBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/listNormalBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/scrollPaneNormalBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/tabPanelBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/windowPaneBorderStyleFor_in_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/border-styles/worldMainDockingBarBorderStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/buttonFocusIndicatorCornerRadiusFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/buttonLabelInsetFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/buttonMinHeight.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/buttonMinWidth.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/controlButtonLabelInsetFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/dropListFocusIndicatorCornerRadiusFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/dropListInsetFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/editableDropListMargins.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/expanderTitleInsetFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/scrollbarMinimumThumbThickness.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/scrollbarThickness.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/tabLabelInsetFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/tabSelectorCellInsetFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/defaults/treeLineWidth.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonColouredFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonColouredMiddleColor.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonFocusBoundsFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonPlainFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonPlainMiddleColor.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonPressedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/buttonSelectedPressedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/checkboxButtonDisabledFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/checkboxButtonNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/checkboxButtonSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonDisabledFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonMouseOverFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonPressedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonSelectedDisabledFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonSelectedMouseOverFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/controlButtonSelectedPressedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/dropListFocusBoundsFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/menuItemInDockingBarSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/menuItemSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/radioButtonDisabledFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/radioButtonNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/radioButtonSelectedDisabledFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/radioButtonSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/tabLabelNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-buttons/tabLabelSelectedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/baseScrollbarColorFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarImageColorFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarNormalButtonFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarNormalHorizontalThumbFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarNormalThumbFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/scrollbarNormalVerticalThumbFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles-scrollbars/useScrollbarThumbShadow.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonBottomLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonBottomMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonBottomRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonMiddleLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonMiddleRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSelectedBottomLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSelectedBottomMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSelectedBottomRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSelectedMiddleLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSelectedMiddleRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSelectedTopLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSelectedTopMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSelectedTopRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSquareBottomLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSquareBottomRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSquareSelectedBottomLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSquareSelectedBottomRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSquareSelectedTopLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSquareSelectedTopRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSquareTopLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonSquareTopRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonTopLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonTopMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/buttonTopRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/checkboxForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/checkboxSelectedForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dialogWindowActiveFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dialogWindowInactiveFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dockingBarNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dropListDisabledFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/dropListNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/expanderTitleNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/paneColorFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/progressBarFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/progressBarProgressFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/radioButtonForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/radioButtonSelectedForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/resizerGripNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/scrollbarThumbBottomForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/scrollbarThumbHorizontalMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/scrollbarThumbLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/scrollbarThumbRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/scrollbarThumbTopForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/scrollbarThumbVerticalMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/splitterNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/splitterPressedFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/taskbarFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/textEditorDisabledFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/textFieldNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/windowActiveFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/windowActiveTitleFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/windowInactiveFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/windowInactiveTitleFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/fill-styles/worldMainDockingBarNormalFillStyleFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/initialize.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/initializeForms.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonBottomLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonBottomMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonBottomRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonMiddleLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonMiddleRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSelectedBottomLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSelectedBottomMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSelectedBottomRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSelectedMiddleLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSelectedMiddleRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSelectedTopLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSelectedTopMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSelectedTopRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSquareBottomLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSquareBottomRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSquareSelectedBottomLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSquareSelectedBottomRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSquareSelectedTopLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSquareSelectedTopRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSquareTopLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonSquareTopRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonTopLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonTopMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newButtonTopRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newCheckboxForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newCheckboxMarkerForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newCheckboxSelectedForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newRadioButtonForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newRadioButtonMarkerForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newRadioButtonSelectedForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newScrollbarThumbBottomForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newScrollbarThumbHorizontalMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newScrollbarThumbLeftForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newScrollbarThumbRightForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newScrollbarThumbTopForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newScrollbarThumbVerticalMiddleForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newTreeExpandedForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newTreeUnexpandedForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowCloseForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowCloseOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowInactiveControlForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMaximizeForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMaximizeOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMenuForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMenuPassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMinimizeForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/initialize-release/newWindowMinimizeOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/buttonLabelForText_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/configureWindowLabelAreaFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/createCollapseBoxFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/createExpandBoxFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/createMenuBoxFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowCloseOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowClosePassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMaximizeOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMaximizePassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMenuIconFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMenuOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMenuPassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMinimizeOverForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/label-styles/windowMinimizePassiveForm.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/morph creation/newCloseControlIn_for_action_help_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/morph creation/newDialogPanelIn_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/morph creation/newFocusIndicatorMorphFor_.st
A Polymorph-Widgets-Themes/UIThemeWatery.cls/instance/morph creation/newTaskbarThumbnailIn_for_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/README.md
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/class/accessing/newDefaultSettings.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/class/accessing/themeName.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/definition.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/accessing/windowActiveDropShadowStyle.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/accessing/windowActiveDropShadowStyle_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/basic-colors/taskbarActiveButtonColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/basic-colors/taskbarButtonLabelColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/basic-colors/taskbarMinimizedButtonColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/buttonCornerStyleIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/buttonNormalBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/checkboxButtonDisabledBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/checkboxButtonNormalBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/checkboxButtonSelectedBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/dropListControlButtonWidth.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/expanderTitleControlButtonWidth.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/radioButtonCornerStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-buttons/textEntryCornerStyleIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-scrollbars/scrollbarNormalButtonBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-scrollbars/scrollbarNormalThumbBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-scrollbars/scrollbarPagingAreaCornerStyleIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-scrollbars/scrollbarPressedButtonBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles-scrollbars/scrollbarThumbCornerStyleIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/configureWindowBorderFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/drawTextAdornmentFor_color_on_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/dropListNormalBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/listNormalBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/scrollPaneNormalBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/tabPanelBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/windowPaneBorderStyleFor_in_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/border-styles/worldMainDockingBarBorderStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/buttonFocusIndicatorCornerRadiusFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/buttonLabelInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/buttonMinHeight.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/buttonMinWidth.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/controlButtonLabelInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/dropListFocusIndicatorCornerRadiusFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/dropListInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/editableDropListInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/editableDropListMargins.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/expanderTitleInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/scrollbarMinimumThumbThickness.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/scrollbarThickness.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/tabLabelInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/tabSelectorCellInsetFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/defaults/treeLineWidth.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonColouredFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonColouredMiddleColor.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonFocusBoundsFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonPlainFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonPlainMiddleColor.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/buttonSelectedPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/checkboxButtonDisabledFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/checkboxButtonNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/checkboxButtonSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonDisabledFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonMouseOverFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonSelectedDisabledFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonSelectedMouseOverFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/controlButtonSelectedPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/dropListFocusBoundsFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/menuItemInDockingBarSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/menuItemSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/radioButtonDisabledFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/radioButtonNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/radioButtonSelectedDisabledFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/radioButtonSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/tabLabelNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-buttons/tabLabelSelectedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/baseScrollbarColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/scrollbarImageColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/scrollbarNormalButtonFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/scrollbarNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/scrollbarNormalHorizontalThumbFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/scrollbarNormalThumbFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/scrollbarNormalVerticalThumbFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles-scrollbars/useScrollbarThumbShadow.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonBottomLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonBottomMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonBottomRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonMiddleLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonMiddleRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonPanelNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSelectedBottomLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSelectedBottomMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSelectedBottomRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSelectedMiddleLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSelectedMiddleRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSelectedTopLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSelectedTopMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSelectedTopRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSquareBottomLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSquareBottomRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSquareSelectedBottomLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSquareSelectedBottomRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSquareSelectedTopLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSquareSelectedTopRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSquareTopLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonSquareTopRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonTopLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonTopMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/buttonTopRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/checkboxForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/checkboxSelectedForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/dialogWindowActiveFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/dialogWindowInactiveFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/dockingBarNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/dropListDisabledFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/dropListNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/expanderTitleNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/paneColorFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/progressBarFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/progressBarProgressFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/radioButtonForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/radioButtonSelectedForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/resizerGripNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/scrollbarThumbBottomForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/scrollbarThumbHorizontalMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/scrollbarThumbLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/scrollbarThumbRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/scrollbarThumbTopForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/scrollbarThumbVerticalMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/splitterNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/splitterPressedFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/stripesForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/taskbarFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/textEditorDisabledFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/textFieldNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/windowActiveFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/windowActiveTitleFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/windowInactiveFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/windowInactiveTitleFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/fill-styles/worldMainDockingBarNormalFillStyleFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/initialize.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/initializeForms.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonBottomLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonBottomMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonBottomRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonMiddleLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonMiddleRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSelectedBottomLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSelectedBottomMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSelectedBottomRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSelectedMiddleLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSelectedMiddleRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSelectedTopLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSelectedTopMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSelectedTopRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSquareBottomLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSquareBottomRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSquareSelectedBottomLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSquareSelectedBottomRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSquareSelectedTopLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSquareSelectedTopRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSquareTopLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonSquareTopRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonTopLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonTopMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newButtonTopRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newCheckboxForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newCheckboxMarkerForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newCheckboxSelectedForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newRadioButtonForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newRadioButtonMarkerForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newRadioButtonSelectedForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newScrollbarThumbBottomForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newScrollbarThumbHorizontalMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newScrollbarThumbLeftForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newScrollbarThumbRightForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newScrollbarThumbTopForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newScrollbarThumbVerticalMiddleForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newStripesForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newTreeExpandedForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newTreeUnexpandedForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowCloseForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowCloseOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowInactiveControlForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMaximizeForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMaximizeOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMenuForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMenuOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMenuPassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMinimizeForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/initialize-release/newWindowMinimizeOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/buttonLabelForText_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/configureWindowLabelAreaFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/createCollapseBoxFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/createExpandBoxFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/createMenuBoxFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowCloseOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowClosePassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMaximizeOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMaximizePassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMenuIconFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMenuOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMenuPassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMinimizeOverForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/label-styles/windowMinimizePassiveForm.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/morph creation/newCloseControlIn_for_action_help_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/morph creation/newDialogPanelIn_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/morph creation/newFocusIndicatorMorphFor_.st
R Polymorph-Widgets-Themes/UIThemeWatery2.cls/instance/morph creation/newTaskbarThumbnailIn_for_.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script100.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script101.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script102.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script103.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script104.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script105.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script106.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script107.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script108.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script109.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script110.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script111.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script112.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script113.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script114.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script115.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script116.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script117.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script118.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script119.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script120.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script121.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script122.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script123.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script124.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script125.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script126.st
A ScriptLoader30/ScriptLoader.cls/instance/pharo - scripts/script127.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30262.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30263.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30264.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30265.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30266.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30267.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30268.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30269.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30270.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30271.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30272.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30273.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30274.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30275.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30276.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30277.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30278.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30279.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30280.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30281.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30282.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30283.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30284.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30285.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30286.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30287.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30288.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30289.st
R ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30290.st
A ScriptLoader30/ScriptLoader.cls/instance/pharo - updates/update30292.st
M ScriptLoader30/ScriptLoader.cls/instance/public/commentForCurrentUpdate.st
M Tools-Debugger/Debugger.cls/class/instance creation/informExistingDebugger_label_.st
M Tools-Debugger/Debugger.cls/class/opening/openInterrupt_onProcess_.st
R Tools-Debugger/Debugger.cls/instance/context stack (message list)/contextStackListWithMultiColumn.st
R Tools-Debugger/Debugger.cls/instance/private/externalInterrupt_.st
M Tools-Debugger/Debugger.cls/instance/private/process_controller_context_.st
Log Message:
-----------
30292
11211 clean up Watery2 theme
https://pharo.fogbugz.com/f/cases/11211
11206 clean up externalInterrupt in old Debugger
https://pharo.fogbugz.com/f/cases/11206
Compare: https://github.com/pharo-project/pharo-core/compare/1d0d72e2efcd...7cbffa99…
July 22, 2013