[Monodevelop-patches-list] r2026 - in trunk/MonoDevelop/Core/src/Main/Base: . Gui/HtmlControl

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Fri Nov 12 17:07:15 EST 2004


Author: tberman
Date: 2004-11-12 17:07:15 -0500 (Fri, 12 Nov 2004)
New Revision: 2026

Modified:
   trunk/MonoDevelop/Core/src/Main/Base/ChangeLog
   trunk/MonoDevelop/Core/src/Main/Base/Gui/HtmlControl/MozillaControl.cs
Log:
2004-11-12  Todd Berman  <tberman at off.net>

	* Gui/HtmlControl/MozillaControl: No gtype registration, fixes
	jba's bug.


Modified: trunk/MonoDevelop/Core/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/Main/Base/ChangeLog	2004-11-12 16:13:57 UTC (rev 2025)
+++ trunk/MonoDevelop/Core/src/Main/Base/ChangeLog	2004-11-12 22:07:15 UTC (rev 2026)
@@ -1,14 +1,19 @@
+2004-11-12  Todd Berman  <tberman at off.net>
+
+	* Gui/HtmlControl/MozillaControl: No gtype registration, fixes
+	jba's bug.
+
 2004-11-11  Todd Berman  <tberman at off.net>
 
-	* src/Main/Base/Makefile.am: Add $(MONO_POSIX_OEE)
-	* src/Main/Base/Internal/Project/Combine/Combine.cs: #ifdef around
+	* Makefile.am: Add $(MONO_POSIX_OEE)
+	* Internal/Project/Combine/Combine.cs: #ifdef around
 	FileMode using. This should fix cvs HEAD users.
 
 2004-11-05  Levi Bard  <taktaktaktaktaktaktaktaktaktak at gmail.com>
 
-	* src/Main/Base/Internal/Parser/IParser.cs: Added
+	* Internal/Parser/IParser.cs: Added
 	HandlesFileExtension() for selection among multiple parsers
-	* src/Main/Base/Services/ParserService/DefaultParserService.cs: Added
+	* Services/ParserService/DefaultParserService.cs: Added
 	parser selection using IParser.HandlesFileExtension()
 
 2004-11-02  John Luke  <john.luke at gmail.com>

Modified: trunk/MonoDevelop/Core/src/Main/Base/Gui/HtmlControl/MozillaControl.cs
===================================================================
--- trunk/MonoDevelop/Core/src/Main/Base/Gui/HtmlControl/MozillaControl.cs	2004-11-12 16:13:57 UTC (rev 2025)
+++ trunk/MonoDevelop/Core/src/Main/Base/Gui/HtmlControl/MozillaControl.cs	2004-11-12 22:07:15 UTC (rev 2026)
@@ -17,19 +17,8 @@
 		private string html;
 		private string css;
 		
-		public static new GLib.GType GType
+		public MozillaControl ()
 		{
-			get
-			{
-				if (gtype == GLib.GType.Invalid)
-					gtype = RegisterGType (typeof (MozillaControl));
-				return gtype;
-			}
-		}
-		
-		//FIXME: pick a better path, one of the Environment dirs
-		public MozillaControl () : base (GType)
-		{
 			WebControl.SetProfilePath ("/tmp", "MonoDevelop");
 		}
 		




More information about the Monodevelop-patches-list mailing list