[Monodevelop-patches-list] r1828 - in trunk/MonoDevelop/src/Main/Base: . Gui/Dialogs

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Fri Jun 25 17:29:17 EDT 2004


Author: tberman
Date: 2004-06-25 17:29:17 -0400 (Fri, 25 Jun 2004)
New Revision: 1828

Modified:
   trunk/MonoDevelop/src/Main/Base/ChangeLog
   trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/SharpDevelopAboutPanels.cs
Log:
fixup


Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog	2004-06-25 21:01:48 UTC (rev 1827)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog	2004-06-25 21:29:17 UTC (rev 1828)
@@ -1,5 +1,10 @@
 2004-06-25  Todd Berman  <tberman at off.net>
 
+	* Gui/Dialogs/SharpDevelopAboutPanels.cs: Removing ASP mention at
+	the request of Mike Krueger.
+
+2004-06-25  Todd Berman  <tberman at off.net>
+
 	* Gui/AbstractViewContent.cs: Make PathRelativeToProject not store in
 	a string, and always be correct, no matter if the file is new, or has
 	been moved since being loaded.

Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/SharpDevelopAboutPanels.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/SharpDevelopAboutPanels.cs	2004-06-25 21:01:48 UTC (rev 1827)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/SharpDevelopAboutPanels.cs	2004-06-25 21:29:17 UTC (rev 1828)
@@ -45,15 +45,10 @@
 			HBox hboxVersion = new HBox ();
 			hboxVersion.PackStart (versionLabel, false, false, 5);
 			
-			//FIXME why do they align in the center always
 			HBox hboxLicense = new HBox ();
 			licenseLabel.Markup = String.Format ("<b>License</b>\n    {0}", GettextCatalog.GetString ("Released under the GNU General Public license."));
 			hboxLicense.PackStart (licenseLabel, false, false, 5);
 
-			// FIXME should this be translated
-			HBox hboxSponsor = new HBox ();
-			sponsorLabel.Markup = "<b>Sponsors</b>\n    SharpDevelop is sponsored by AlphaSierraPapa\n    <span foreground=\"blue\">http://www.AlphaSierraPapa.com</span>\n    <span foreground=\"blue\">http://icsharpcode.net/opensource/sd</span>";
-			hboxSponsor.PackStart (sponsorLabel, false, false, 5);
 
 			HBox hboxCopyright = new HBox ();
 			copyrightLabel.Markup = "<b>Copyright</b>\n    (c) 2000-2003 by icsharpcode.net\n    (c) 2004 by MonoDevelop contributors";
@@ -62,7 +57,6 @@
 			this.PackStart (hboxVersion, false, true, 0);
 			this.PackStart (hboxLicense, false, true, 5);
 			this.PackStart (hboxCopyright, false, true, 5);
-			this.PackStart (hboxSponsor, false, true, 5);
 			this.ShowAll ();
 		}
 	}




More information about the Monodevelop-patches-list mailing list