Andreas Raab uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ar.121.mcz==================== Summary ====================
Name: Tools-ar.121
Author: ar
Time: 26 August 2009, 11:44:37 am
UUID: edc9f008-080b-0448-a09c-e32e8eaec079
Ancestors: Tools-ar.120
Two fixes for FileContentsBrowser:
- do not use annotation panes since FCB has info pane
- provide proper menu in message list
=============== Diff against Tools-ar.120 ===============
Item was added:
+ ----- Method: FileContentsBrowser>>wantsAnnotationPane (in category 'toolbuilder') -----
+ wantsAnnotationPane
+ "Never. FCB has its info pane already which serves the same purpose."
+ ^false
+ !
Item was added:
+ ----- Method: FileContentsBrowser>>messageListMenu:shifted: (in category 'menus') -----
+ messageListMenu: aMenu shifted: aBool
+
+ ^ aMenu
+ labels:
+ 'fileIn
+ fileOut
+ senders (n)
+ implementors (m)
+ method inheritance (h)
+ versions (v)
+ remove'
+ lines: #(2 6)
+ selections: #(fileInMessage fileOutMessage
+ browseSenders browseImplementors methodHierarchy browseVersions
+ removeMessage).
+ !
Item was removed:
- ----- Method: FileContentsBrowser>>messageListMenu: (in category 'menus') -----
- messageListMenu: aMenu
-
- ^ aMenu
- labels:
- 'fileIn
- fileOut
- senders (n)
- implementors (m)
- method inheritance (h)
- versions (v)
- remove'
- lines: #(2 6)
- selections: #(fileInMessage fileOutMessage
- browseSenders browseImplementors methodHierarchy browseVersions
- removeMessage).!