Skip to content

Commit

Permalink
50495
Browse files Browse the repository at this point in the history
17226 PluggableListMorph>>#userString should return one string
	https://pharo.fogbugz.com/f/cases/17226

http://files.pharo.org/image/50/50495.zip
  • Loading branch information
Jenkins Build Server authored and ci committed Dec 11, 2015
1 parent db7ddf9 commit 950ae89
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 23 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
userString
^list
^list ifNotNil: [
String streamContents: [:strm |
list do: [:i |
strm nextPutAll: (i string); cr
]
]
]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
script50494
script50495

^ 'AST-Core-TheIntegrator.391.mcz
AST-Tests-Core-TheIntegrator.86.mcz
Expand Down Expand Up @@ -186,7 +186,7 @@ Morphic-Widgets-Extra-TheIntegrator.27.mcz
Morphic-Widgets-FastTable-CyrilFerlicot.142.mcz
Morphic-Widgets-List-TheIntegrator.21.mcz
Morphic-Widgets-NewList-TheIntegrator.9.mcz
Morphic-Widgets-Pluggable-TheIntegrator.62.mcz
Morphic-Widgets-Pluggable-TheIntegrator.64.mcz
Morphic-Widgets-PolyTabs-TheIntegrator.2.mcz
Morphic-Widgets-Scrolling-TheIntegrator.30.mcz
Morphic-Widgets-Tabs-TheIntegrator.18.mcz
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
update50495
"self new update50495"
self withUpdateLog: '17226 PluggableListMorph>>#userString should return one string
https://pharo.fogbugz.com/f/cases/17226'.
self loadTogether: self script50495 merge: false.
self flushCaches.
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
commentForCurrentUpdate
^ '17216 Morph>>#removeDropShadow does not remove the shadowOffset
https://pharo.fogbugz.com/f/cases/17216
17208 Remove rounded corners from MenuModel parent item
https://pharo.fogbugz.com/f/cases/17208
16920 In TreeModel>>acceptDropBlock: the block receives morphs as arguments
https://pharo.fogbugz.com/f/cases/16920'
^ '17226 PluggableListMorph>>#userString should return one string
https://pharo.fogbugz.com/f/cases/17226'

0 comments on commit 950ae89

Please sign in to comment.