# HG changeset patch # User vrany # Date 1311176773 -7200 # Node ID 82ee4e5505170eff1e65f56d3cbca0af06c9d315 # Parent 6c6417ad1407a5480095482aade936d4be486e25 Added missing CharacterArray>>inspector2TabBytes diff -r 6c6417ad1407 -r 82ee4e550517 extensions.st --- a/extensions.st Wed Jul 20 17:44:06 2011 +0200 +++ b/extensions.st Wed Jul 20 17:46:13 2011 +0200 @@ -190,6 +190,20 @@ !CharacterArray methodsFor:'inspecting'! +inspector2TabBytes + + ^self newInspector2Tab + label: 'Bytes'; + priority: 25; + view: ((ScrollableView for:TextView) contents: + (self asByteArray hexPrintStringWithSeparator:Character space); yourself) + + "Created: / 17-02-2008 / 10:10:50 / janfrog" + "Created: / 20-07-2011 / 16:36:52 / Jan Vrany " +! ! + +!CharacterArray methodsFor:'inspecting'! + inspector2TabText ^self newInspector2Tab @@ -1505,5 +1519,5 @@ !stx_libtool class methodsFor:'documentation'! extensionsVersion_CVS - ^ '$Header: /cvs/stx/stx/libtool/extensions.st,v 1.45 2011-07-19 17:01:49 vrany Exp $' + ^ '$Header: /cvs/stx/stx/libtool/extensions.st,v 1.46 2011-07-20 15:46:13 vrany Exp $' ! ! \ No newline at end of file