# HG changeset patch # User Claus Gittinger # Date 1223114037 -7200 # Node ID 9ac48dce073b05f9d8dfc87f254cd9ac6ae63b10 # Parent 26da8bdd54e22649d3f39f375ba0c247f19aa00b *** empty log message *** diff -r 26da8bdd54e2 -r 9ac48dce073b StandardSystemView.st --- a/StandardSystemView.st Fri Oct 03 15:03:02 2008 +0200 +++ b/StandardSystemView.st Sat Oct 04 11:53:57 2008 +0200 @@ -1478,15 +1478,15 @@ self setCursor ]. - application isNil ifTrue:[ + application notNil ifTrue:[ + windowClassNameString := application className. + ] ifFalse:[ (self class == StandardSystemView and:[subViews size == 1]) ifTrue:[ "This is a subclass of SimpleView wrapped into a StandardSystemView" windowClassNameString := subViews first className. ] ifFalse:[ windowClassNameString := self className. ] - ] ifFalse:[ - windowClassNameString := application className. ]. self setWindowClass:('Stx.', windowClassNameString) name:"name"'bla'. @@ -1546,7 +1546,7 @@ !StandardSystemView class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libview/StandardSystemView.st,v 1.183 2008-07-22 20:50:59 cg Exp $' + ^ '$Header: /cvs/stx/stx/libview/StandardSystemView.st,v 1.184 2008-10-04 09:53:57 cg Exp $' ! ! StandardSystemView initialize!