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

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Thu May 20 14:56:41 EDT 2004


Author: tberman
Date: 2004-05-20 14:56:41 -0400 (Thu, 20 May 2004)
New Revision: 1616

Modified:
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
   trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs
Log:
update to cvs


Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog	2004-05-20 03:34:32 UTC (rev 1615)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/ChangeLog	2004-05-20 18:56:41 UTC (rev 1616)
@@ -1,3 +1,7 @@
+2004-05-20  Todd Berman  <tberman at sevenl.net>
+
+	* Gui/SourceEditorBuffer.cs: update to gtk-sharp from cvs.
+
 2004-05-17  Todd Berman  <tberman at sevenl.net>
 
 	* Gui/SourceEditorView.cs: workaround potential nullref.

Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs	2004-05-20 03:34:32 UTC (rev 1615)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Gui/SourceEditorBuffer.cs	2004-05-20 18:56:41 UTC (rev 1616)
@@ -408,7 +408,7 @@
 				IntPtr data = gtksharp_slist_get_data (current);
 				IntPtr nm = gtk_source_marker_get_marker_type (data);
 
-				string name = GLibSharp.Marshaller.PtrToStringGFree (nm);
+				string name = GLib.Marshaller.PtrToStringGFree (nm);
 				if (name == type.ToString ()) {
 					fnd_marker = true;
 					break;
@@ -453,7 +453,7 @@
 				
 				IntPtr data = gtksharp_slist_get_data (current);
 				IntPtr nm = gtk_source_marker_get_marker_type (data);
-				string name = GLibSharp.Marshaller.PtrToStringGFree (nm);
+				string name = GLib.Marshaller.PtrToStringGFree (nm);
 				if (name == type.ToString ()) {
 					gtk_source_buffer_delete_marker (Handle, data);
 					found_marker = true;
@@ -507,7 +507,7 @@
 					return;
 				
 				IntPtr nm = gtk_source_marker_get_marker_type (prevMarker);
-				string name = GLibSharp.Marshaller.PtrToStringGFree (nm);
+				string name = GLib.Marshaller.PtrToStringGFree (nm);
 				if (name == "SourceEditorBookmark") {
 					gtk_source_buffer_get_iter_at_marker (Handle, ref loc, prevMarker);
 					
@@ -550,7 +550,7 @@
 					return;
 				
 				IntPtr nm = gtk_source_marker_get_marker_type (nextMarker);
-				string name = GLibSharp.Marshaller.PtrToStringGFree (nm);
+				string name = GLib.Marshaller.PtrToStringGFree (nm);
 				if (name == "SourceEditorBookmark") {
 					gtk_source_buffer_get_iter_at_marker (Handle, ref loc, nextMarker);
 					
@@ -582,7 +582,7 @@
 				
 				IntPtr data = gtksharp_slist_get_data (current);
 				IntPtr nm = gtk_source_marker_get_marker_type (data);
-				string name = GLibSharp.Marshaller.PtrToStringGFree (nm);
+				string name = GLib.Marshaller.PtrToStringGFree (nm);
 				if (name == type.ToString ())
 					gtk_source_buffer_delete_marker (Handle, data);
 				




More information about the Monodevelop-patches-list mailing list