Fix usage of #iconFilename vs. #applicationIconFilename
authorStefan Vogel <sv@exept.de>
Tue, 03 Jun 2008 21:19:45 +0200
changeset 11038 3026530d8e37
parent 11037 ab98e48e189e
child 11039 1f977c01e7df
Fix usage of #iconFilename vs. #applicationIconFilename
ApplicationDefinition.st
--- a/ApplicationDefinition.st	Tue Jun 03 18:23:03 2008 +0200
+++ b/ApplicationDefinition.st	Tue Jun 03 21:19:45 2008 +0200
@@ -2016,7 +2016,7 @@
     s notNil ifTrue:[
         d  at: 'LEGAL_COPYRIGHT_LINE' put: '      VALUE "LegalCopyright", "',s,'\0"'
     ].
-    s := self iconFileName.
+    s := self applicationIconFileName.
     s isNil ifTrue:[
         d  at:'SEMI_IF_NO_ICON_EXISTS' put:';; '.
         d  at:'SEMI_IF_ICON_EXISTS' put:''.
@@ -2416,5 +2416,5 @@
 !ApplicationDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.110 2008-05-28 09:44:07 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.111 2008-06-03 19:19:45 stefan Exp $'
 ! !