Browse Source

fixes issue #495

Nicolas Petton 11 years ago
parent
commit
47fca08463
3 changed files with 4 additions and 4 deletions
  1. 1 1
      js/Helios-Workspace.deploy.js
  2. 2 2
      js/Helios-Workspace.js
  3. 1 1
      st/Helios-Workspace.st

+ 1 - 1
js/Helios-Workspace.deploy.js

@@ -520,7 +520,7 @@ return _st(self)._doIt();
 }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 $3=_st(html)._button();
 _st($3)._class_("button");
-_st($3)._with_("PintIt");
+_st($3)._with_("PrintIt");
 $4=_st($3)._onClick_((function(){
 return smalltalk.withContext(function($ctx2) {
 return _st(self)._printIt();

+ 2 - 2
js/Helios-Workspace.js

@@ -696,7 +696,7 @@ return _st(self)._doIt();
 }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 $3=_st(html)._button();
 _st($3)._class_("button");
-_st($3)._with_("PintIt");
+_st($3)._with_("PrintIt");
 $4=_st($3)._onClick_((function(){
 return smalltalk.withContext(function($ctx2) {
 return _st(self)._printIt();
@@ -710,7 +710,7 @@ return _st(self)._inspectIt();
 }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
 return self}, function($ctx1) {$ctx1.fill(self,"renderButtonsOn:",{html:html},smalltalk.HLCodeWidget)})},
 args: ["html"],
-source: "renderButtonsOn: html\x0a\x09html button \x0a\x09\x09class: 'button';\x0a\x09\x09with: 'DoIt';\x0a\x09\x09onClick: [ self doIt ].\x0a\x09html button \x0a\x09\x09class: 'button';\x0a\x09\x09with: 'PintIt';\x0a\x09\x09onClick: [ self printIt ].\x0a\x09html button \x0a\x09\x09class: 'button';\x0a\x09\x09with: 'InspectIt';\x0a\x09\x09onClick: [ self inspectIt ]",
+source: "renderButtonsOn: html\x0a\x09html button \x0a\x09\x09class: 'button';\x0a\x09\x09with: 'DoIt';\x0a\x09\x09onClick: [ self doIt ].\x0a\x09html button \x0a\x09\x09class: 'button';\x0a\x09\x09with: 'PrintIt';\x0a\x09\x09onClick: [ self printIt ].\x0a\x09html button \x0a\x09\x09class: 'button';\x0a\x09\x09with: 'InspectIt';\x0a\x09\x09onClick: [ self inspectIt ]",
 messageSends: ["class:", "button", "with:", "onClick:", "doIt", "printIt", "inspectIt"],
 referencedClasses: []
 }),

+ 1 - 1
st/Helios-Workspace.st

@@ -256,7 +256,7 @@ renderButtonsOn: html
 		onClick: [ self doIt ].
 	html button 
 		class: 'button';
-		with: 'PintIt';
+		with: 'PrintIt';
 		onClick: [ self printIt ].
 	html button 
 		class: 'button';