1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
diff -aur monodevelop-0.7-orig/Extras/BooBinding/BooBindingCompilerServices.boo monodevelop-0.7/Extras/BooBinding/BooBindingCompilerServices.boo
--- monodevelop-0.7-orig/Extras/BooBinding/BooBindingCompilerServices.boo 2005-04-25 21:27:10.000000000 -0400
+++ monodevelop-0.7/Extras/BooBinding/BooBindingCompilerServices.boo 2005-09-06 21:31:23.000000000 -0400
@@ -105,7 +105,7 @@
try:
monitor.BeginTask (null, 2)
monitor.Log.WriteLine ("Compiling Boo source code ...")
- arguments = String.Format ("-c \"{0} {1} > {2} 2> {3}\"", (compiler, args, output, error))
+ arguments = String.Format ("-c \"{0} {1} > {2} 2> {3}\"", compiler, args, output, error)
si = ProcessStartInfo ("/bin/sh", arguments)
// print "${si.FileName}, ${si.Arguments}"
si.RedirectStandardOutput = true
diff -aur monodevelop-0.7-orig/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo monodevelop-0.7/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo
--- monodevelop-0.7-orig/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo 2005-04-27 22:38:46.000000000 -0400
+++ monodevelop-0.7/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo 2005-08-29 09:29:06.000000000 -0400
@@ -119,9 +119,7 @@
labelCompileTarget.Markup = String.Format ("{0} :", GettextCatalog.GetString ("Output Assembly"))
- typeArray = array(System.Type, 1)
- typeArray[0] = typeof(string)
- store = ListStore (typeArray)
+ store = ListStore (typeof(string))
stringArray = array(System.String, 1)
stringArray[0] = GettextCatalog.GetString ("Executable")
|