#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Mon, 10 Oct 2016 14:21:47 +0200
changeset 20585 472c224d3f6f
parent 20584 301fc226c29a
child 20586 fd48de558a00
#BUGFIX by cg class: ProjectDefinition changed: #applicationIconFileNameLinux_code #applicationIconFileNameOSX_code #applicationIconFileNameWindows_code
ProjectDefinition.st
--- a/ProjectDefinition.st	Mon Oct 10 14:21:07 2016 +0200
+++ b/ProjectDefinition.st	Mon Oct 10 14:21:47 2016 +0200
@@ -1341,7 +1341,7 @@
     ^ String streamContents:[:s |
         s nextPutLine:'applicationIconFileNameLinux'.
         s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon).'.
-        s nextputLine:'     This is currently unused (will be for desktop definitions)"'.
+        s nextPutLine:'     This is currently unused (will be for desktop definitions)"'.
         s cr;
         nextPutLine:'    ^ nil';
         nextPutLine:'    " ^ self applicationName "'.
@@ -1359,7 +1359,7 @@
     ^ String streamContents:[:s |
         s nextPutLine:'applicationIconFileNameOSX'.
         s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon).'.
-        s nextputLine:'     This is used to create the info.plist file"'.
+        s nextPutLine:'     This is used to create the info.plist file"'.
         s cr;
         nextPutLine:'    ^ nil';
         nextPutLine:'    " ^ self applicationName "'.
@@ -1377,7 +1377,7 @@
     ^ String streamContents:[:s |
         s nextPutLine:'applicationIconFileNameWindows'.
         s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon).'.
-        s nextputLine:'     This will be included in the rc-resource file for Windowsdeployment"'.
+        s nextPutLine:'     This will be included in the rc-resource file for Windowsdeployment"'.
         s cr;
         nextPutLine:'    ^ nil';
         nextPutLine:'    " ^ self applicationName "'.