Marcel Taeumel uploaded a new version of ToolBuilder-Kernel to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Kernel-mt.106.mcz==================== Summary ====================
Name: ToolBuilder-Kernel-mt.106
Author: mt
Time: 16 August 2016, 1:29:52.267039 pm
UUID: ec57bc1d-1b9f-6142-86e3-fef680f65fe0
Ancestors: ToolBuilder-Kernel-mt.105
Fixes test result colors in TestRunner.
=============== Diff against ToolBuilder-Kernel-mt.105 ===============
Item was changed:
PluggableWidgetSpec subclass: #PluggableTextSpec
+ instanceVariableNames: 'getText setText selection menu askBeforeDiscardingEdits editText indicateUnacceptedChanges stylerClass font readOnly softLineWrap hardLineWrap textColor'
- instanceVariableNames: 'getText setText selection menu askBeforeDiscardingEdits editText indicateUnacceptedChanges stylerClass font readOnly softLineWrap hardLineWrap'
classVariableNames: ''
poolDictionaries: ''
category: 'ToolBuilder-Kernel'!
!PluggableTextSpec commentStamp: 'ar 2/11/2005 21:58' prior: 0!
A text editor.
Instance variables:
getText <Symbol> The selector to retrieve the text.
setText <Symbol> The selector to set the text.
selection <Symbol> The selector to retrieve the text selection.
menu <Symbol> The selector to offer (to retrieve?) the context menu.
color <Symbol> The selector to retrieve the background color.
!
Item was added:
+ ----- Method: PluggableTextSpec>>textColor (in category 'accessing') -----
+ textColor
+ ^ textColor!
Item was added:
+ ----- Method: PluggableTextSpec>>textColor: (in category 'accessing') -----
+ textColor: aSymbol
+ textColor := aSymbol.!