ProjectDefinition.st
changeset 20584 301fc226c29a
parent 20582 1f21182eba5b
child 20585 472c224d3f6f
--- a/ProjectDefinition.st	Mon Oct 10 12:23:19 2016 +0200
+++ b/ProjectDefinition.st	Mon Oct 10 14:21:07 2016 +0200
@@ -1340,7 +1340,7 @@
 applicationIconFileNameLinux_code
     ^ String streamContents:[:s |
         s nextPutLine:'applicationIconFileNameLinux'.
-        s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon).'
+        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 cr;
         nextPutLine:'    ^ nil';
@@ -1358,7 +1358,7 @@
 applicationIconFileNameOSX_code
     ^ String streamContents:[:s |
         s nextPutLine:'applicationIconFileNameOSX'.
-        s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon).'
+        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 cr;
         nextPutLine:'    ^ nil';
@@ -1376,7 +1376,7 @@
 applicationIconFileNameWindows_code
     ^ String streamContents:[:s |
         s nextPutLine:'applicationIconFileNameWindows'.
-        s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon).'
+        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 cr;
         nextPutLine:'    ^ nil';
@@ -1396,7 +1396,8 @@
     
     ^ String streamContents:[:s |
         s nextPutLine:'applicationIconFileName'.
-        s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon); will be included in the rc-resource file"'.
+        s nextPutLine:'    "Return the name (without suffix) of an icon-file (the app''s icon);'.
+        s nextPutLine:'    "will be included in the rc-resource file"'.
         s cr;
         nextPutLine:'    ^ nil';
         nextPutLine:'    " ^ self applicationName "'.