use ApplicationSubView instead of SimpleView; application query
authorca
Mon, 31 Jan 2000 19:54:40 +0100
changeset 1319 6a245b972637
parent 1318 36a86b5d48a7
child 1320 9c9600432a09
use ApplicationSubView instead of SimpleView; application query
UIPainter.st
--- a/UIPainter.st	Mon Jan 31 16:45:04 2000 +0100
+++ b/UIPainter.st	Mon Jan 31 19:54:40 2000 +0100
@@ -1927,7 +1927,7 @@
         layoutTool := UILayoutTool new.
         layoutTool createBuilder.
         applBuilder := layoutTool builder.
-        applWindow  := SimpleView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
+        applWindow  := ApplicationSubView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
         applWindow level:0.
         layoutTool masterApplication:self.
         applBuilder window:applWindow.
@@ -1938,7 +1938,7 @@
         helpTool := UIHelpTool new.
         helpTool createBuilder.
         applBuilder := helpTool builder.
-        applWindow  := SimpleView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
+        applWindow  := ApplicationSubView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
         applWindow level:0.
         helpTool buildFromClass:specClass.
         helpTool masterApplication:self.
@@ -1950,7 +1950,7 @@
         specTool := UISpecificationTool new.
         specTool createBuilder.
         applBuilder := specTool builder.
-        applWindow  := SimpleView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
+        applWindow  := ApplicationSubView origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
         specTool masterApplication:self.
         applWindow level:0.