[Monodevelop-patches-list] r2070 - in trunk/MonoDevelop/Extras/PythonBinding: . Gui

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sat Dec 11 20:15:58 EST 2004


Author: jluke
Date: 2004-12-11 20:15:58 -0500 (Sat, 11 Dec 2004)
New Revision: 2070

Modified:
   trunk/MonoDevelop/Extras/PythonBinding/Gui/CompilerParametersPanel.cs
   trunk/MonoDevelop/Extras/PythonBinding/Makefile
   trunk/MonoDevelop/Extras/PythonBinding/PythonLanguageBinding.cs
Log:
update


Modified: trunk/MonoDevelop/Extras/PythonBinding/Gui/CompilerParametersPanel.cs
===================================================================
--- trunk/MonoDevelop/Extras/PythonBinding/Gui/CompilerParametersPanel.cs	2004-12-11 01:19:14 UTC (rev 2069)
+++ trunk/MonoDevelop/Extras/PythonBinding/Gui/CompilerParametersPanel.cs	2004-12-12 01:15:58 UTC (rev 2070)
@@ -47,20 +47,24 @@
 		void SetupUI ()
 		{
 			VBox vbox = new VBox (false, 6);
+
 			Label outputLabel = new Label ();
 			outputLabel.Markup = String.Format ("<b>{0}</b>", GettextCatalog.GetString ("Output path"));
 			vbox.PackStart (outputLabel, false, true, 0);
 			vbox.PackStart (outputPath, false, true, 0);
+
 			Label assemblyLabel = new Label ();
 			assemblyLabel.Markup = String.Format ("<b>{0}</b>", GettextCatalog.GetString ("Assembly name"));
 			vbox.PackStart (assemblyLabel, false, true, 0);
 			vbox.PackStart (assemblyName, false, true, 0);
+
 			Label targetLabel = new Label ();
 			targetLabel.Markup = String.Format ("<b>{0}</b>", GettextCatalog.GetString ("Target options"));
 			vbox.PackStart (targetLabel, false, true, 0);
 			vbox.PackStart (exeTarget, false, true, 0);
 			vbox.PackStart (dllTarget, false, true, 0);
 			vbox.PackStart (debug, false, true, 0);
+
 			this.Add (vbox);
 		}
 

Modified: trunk/MonoDevelop/Extras/PythonBinding/Makefile
===================================================================
--- trunk/MonoDevelop/Extras/PythonBinding/Makefile	2004-12-11 01:19:14 UTC (rev 2069)
+++ trunk/MonoDevelop/Extras/PythonBinding/Makefile	2004-12-12 01:15:58 UTC (rev 2070)
@@ -10,7 +10,7 @@
 	/r:../../Core/build/bin/MonoDevelop.Base.dll \
 	/r:../../Core/build/bin/MonoDevelop.SourceEditor.dll \
 	/r:../../Core/build/bin/MonoDevelop.Gui.Widgets.dll \
-	-pkg:gtk-sharp
+	-pkg:gtk-sharp-2.0
 
 #	$(BASE_DEPENDENCIES_LIBS)
 

Modified: trunk/MonoDevelop/Extras/PythonBinding/PythonLanguageBinding.cs
===================================================================
--- trunk/MonoDevelop/Extras/PythonBinding/PythonLanguageBinding.cs	2004-12-11 01:19:14 UTC (rev 2069)
+++ trunk/MonoDevelop/Extras/PythonBinding/PythonLanguageBinding.cs	2004-12-12 01:15:58 UTC (rev 2070)
@@ -109,5 +109,9 @@
 			throw new NotImplementedException ();
 		}
 		
+		public string CommentTag
+		{
+			get { return "#"; }
+		}
 	}
 }




More information about the Monodevelop-patches-list mailing list