#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Wed, 26 Feb 2020 14:50:44 +0100
changeset 9009 1b4dfccafd87
parent 9008 b9e00f16b5c6
child 9010 652d7158a60e
#REFACTORING by stefan class: DisplayRootView changed: #initialize
DisplayRootView.st
--- a/DisplayRootView.st	Wed Feb 26 14:26:01 2020 +0100
+++ b/DisplayRootView.st	Wed Feb 26 14:50:44 2020 +0100
@@ -211,13 +211,13 @@
 !DisplayRootView methodsFor:'initialization & release'!
 
 initialize
-    |dev|
+    |graphicsDevice|
 
     super initialize.
 
-    dev := self device.
-    width := dev width.
-    height := dev height.
+    graphicsDevice := self graphicsDevice.
+    width := graphicsDevice width.
+    height := graphicsDevice height.
     self createRootWindow.
     realized := true.
 !