[Monodevelop-patches-list] r1520 - in trunk/MonoDevelop: . src/AddIns/DisplayBindings/SourceEditor src/AddIns/DisplayBindings/SourceEditor/Gui

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Tue Apr 27 00:44:11 EDT 2004


Author: tberman
Date: 2004-04-27 00:44:11 -0400 (Tue, 27 Apr 2004)
New Revision: 1520

Modified:
   trunk/MonoDevelop/ChangeLog
   trunk/MonoDevelop/configure.in
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs
Log:
match gtksourceview-sharp from cvs.


Modified: trunk/MonoDevelop/ChangeLog
===================================================================
--- trunk/MonoDevelop/ChangeLog	2004-04-27 04:10:39 UTC (rev 1519)
+++ trunk/MonoDevelop/ChangeLog	2004-04-27 04:44:11 UTC (rev 1520)
@@ -1,3 +1,7 @@
+2004-04-27  Todd Berman  <tberman at sevenl.net>
+
+	* configure.in: bump gtksourceview-sharp dep.
+
 2004-04-26  Pawel Rozanski  <tokugawa at afn.no-ip.org>
 
 	* monodevelop.xml: mime for Nemerle source

Modified: trunk/MonoDevelop/configure.in
===================================================================
--- trunk/MonoDevelop/configure.in	2004-04-27 04:10:39 UTC (rev 1519)
+++ trunk/MonoDevelop/configure.in	2004-04-27 04:44:11 UTC (rev 1520)
@@ -31,7 +31,7 @@
 MONO_REQUIRED_VERSION=0.31
 GTKSHARP_REQUIRED_VERSION=0.18.99
 GTKSOURCEVIEW_REQUIRED_VERSION=0.7
-GTKSOURCEVIEWSHARP_REQUIRED_VERSION=0.1
+GTKSOURCEVIEWSHARP_REQUIRED_VERSION=0.2
 GECKOSHARP_REQUIRED_VERSION=0.1
 GNOMEVFS_REQUIRED_VERSION=2.0
 MONODOC_REQUIRED_VERSION=0.13.99

Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog	2004-04-27 04:10:39 UTC (rev 1519)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog	2004-04-27 04:44:11 UTC (rev 1520)
@@ -1,3 +1,10 @@
+2004-04-27  Todd Berman  <tberman at sevenl.net>
+
+	* Gui/SourceEditorBuffer.cs:
+	* Gui/SourceEditorView.cs:
+	* Gui/SourceEditorDisplayBinding.cs: update to match gsv-sharp from
+	cvs.
+
 2004-04-26  John Luke  <jluke at cfl.rr.com>
 
 	* Gui/SourceEditorDisplayBinding.cs: add python mimetype to

Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs	2004-04-27 04:10:39 UTC (rev 1519)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs	2004-04-27 04:44:11 UTC (rev 1520)
@@ -14,6 +14,8 @@
 using System.IO;
 using System.Collections;
 using System.Runtime.InteropServices;
+
+using GtkSourceView;
 	
 namespace MonoDevelop.SourceEditor.Gui
 {

Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs	2004-04-27 04:10:39 UTC (rev 1519)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorDisplayBinding.cs	2004-04-27 04:44:11 UTC (rev 1520)
@@ -14,6 +14,7 @@
 using MonoDevelop.Services;
 
 using Gtk;
+using GtkSourceView;
 
 namespace MonoDevelop.SourceEditor.Gui
 {
@@ -23,7 +24,7 @@
 		
 		static SourceEditorDisplayBinding ()
 		{
-			GtkSourceView.Init ();
+			GtkSourceViewManager.Init ();
 		}
 
 		public virtual bool CanCreateContentForFile (string fileName)

Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs	2004-04-27 04:10:39 UTC (rev 1519)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorView.cs	2004-04-27 04:44:11 UTC (rev 1520)
@@ -17,6 +17,8 @@
 using MonoDevelop.Gui.Utils;
 using MonoDevelop.Services;
 
+using GtkSourceView;
+
 namespace MonoDevelop.SourceEditor.Gui
 {
 	public class SourceEditorView : SourceView, IFormattableDocument




More information about the Monodevelop-patches-list mailing list