SmallSense__CriticsWindow.st
branchcvs_MAIN
changeset 935 f99d1d3a21f9
parent 877 92bce2b53e1f
child 946 78732f808882
--- a/SmallSense__CriticsWindow.st	Fri Mar 25 16:41:41 2016 +0100
+++ b/SmallSense__CriticsWindow.st	Sun Mar 27 13:43:12 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
 stx:goodies/smallsense - A productivity plugin for Smalltalk/X IDE
 Copyright (C) 2013-2014 Jan Vrany
@@ -471,13 +469,16 @@
 !CriticsWindow methodsFor:'hooks'!
 
 postBuildWith: aBuilder
+    |window|
+    
     super postBuildWith:aBuilder.
 
-    aBuilder window allViewBackground:(aBuilder window viewBackground).
+    window := aBuilder window.
+    window allViewBackground:(window viewBackground).
 
     entered := false.
     self updateRationaleAndFixes.
-    aBuilder window beSlave.
+    window beSlave.
 
     "Created: / 03-04-2011 / 10:45:10 / Jan Vrany "
     "Modified: / 16-02-2012 / 14:14:07 / Jan Vrany "