#BUGFIX
authormawalch
Mon, 25 Jan 2016 16:31:43 +0100
changeset 7107 47aff5c3560b
parent 7106 52956049570c
child 7108 2fbacfb5d1ee
child 7111 96d1e688928a
#BUGFIX class: XEmbedContainerView changed: #open
XEmbedContainerView.st
--- a/XEmbedContainerView.st	Mon Jan 25 10:41:10 2016 +0100
+++ b/XEmbedContainerView.st	Mon Jan 25 16:31:43 2016 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
 	      All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libview' }"
 
+"{ NameSpace: Smalltalk }"
+
 SimpleView subclass:#XEmbedContainerView
 	instanceVariableNames:'clientViewId clientView workarounds'
 	classVariableNames:'XEMBED_EMBEDDED_NOTIFY XEMBED_WINDOW_ACTIVATE
@@ -126,9 +130,7 @@
     
     |xembed topView|
 
-    topView := StandardSystemView
-                new;
-                extent:(640 @ 480).
+    topView := StandardSystemView extent:(640 @ 480).
     xembed := self in:topView.
     xembed origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
     
@@ -441,7 +443,7 @@
 !XEmbedContainerView class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/XEmbedContainerView.st,v 1.6 2014-03-19 10:04:17 stefan Exp $'
+    ^ '$Header$'
 !
 
 version_SVN