ApplicationDefinition.st
changeset 11017 72fbbb912441
parent 11007 50faeb5cae88
child 11029 3a3e0179cb06
--- a/ApplicationDefinition.st	Tue May 13 17:26:08 2008 +0200
+++ b/ApplicationDefinition.st	Tue May 13 18:39:19 2008 +0200
@@ -1747,12 +1747,14 @@
 
 !ApplicationDefinition class methodsFor:'mappings'!
 
-additionalFilesToInstall_dot_nsi:bindings
-    ^ String streamContents:[:s |
-        self additionalFilesToInstall do:[:pattern |
-            s nextPutLine:((self installFileLine_nsi_for:pattern) expandPlaceholdersWith:bindings)
+additionalFilesToInstall_dot_nsi:bindings 
+    ^ String 
+        streamContents:[:s | 
+            self additionalFilesToInstall do:[:pattern | 
+                s nextPutLine:((self installFileLine_nsi_for:pattern) 
+                            expandPlaceholdersWith:bindings)
+            ].
         ].
-    ].
 
     "Created: / 01-03-2007 / 19:59:18 / cg"
 !
@@ -1863,12 +1865,14 @@
     "Modified: / 14-09-2006 / 18:58:31 / cg"
 !
 
-commonFilesToInstall_dot_nsi:bindings
-    ^ String streamContents:[:s |
-        self commonFilesToInstall do:[:pattern |
-            s nextPutLine:((self installFileLine_nsi_for:pattern) expandPlaceholdersWith:bindings)
+commonFilesToInstall_dot_nsi:bindings 
+    ^ String 
+        streamContents:[:s | 
+            self commonFilesToInstall do:[:pattern | 
+                s nextPutLine:((self installFileLine_nsi_for:pattern) 
+                            expandPlaceholdersWith:bindings)
+            ].
         ].
-    ].
 
     "Created: / 01-03-2007 / 20:05:20 / cg"
 !
@@ -2416,5 +2420,5 @@
 !ApplicationDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.108 2008-05-09 09:04:33 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.109 2008-05-13 16:39:19 cg Exp $'
 ! !