[anjuta] libanjuta: use IAnjutaIterable instead of GObject in signals



commit f2454d791de99bdbb49dc0d31a75776f8b7b1fb0
Author: Abderrahim Kitouni <akitouni src gnome org>
Date:   Sat Feb 5 19:56:00 2011 +0100

    libanjuta: use IAnjutaIterable instead of GObject in signals

 libanjuta/interfaces/libanjuta.idl               |    8 ++++----
 plugins/language-support-vala/libanjuta-3.0.vapi |    4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/libanjuta/interfaces/libanjuta.idl b/libanjuta/interfaces/libanjuta.idl
index 9a00f90..005c03a 100644
--- a/libanjuta/interfaces/libanjuta.idl
+++ b/libanjuta/interfaces/libanjuta.idl
@@ -2417,24 +2417,24 @@ interface IAnjutaEditor
 	{
 		/* IAnjutaEditorGladeSignal::drop-possible
 		 * @obj: self
-		 * @iter: a IAnjutaIterator of the position where drop would happen
+		 * @iter: a IAnjutaIterable of the position where drop would happen
 		 *
 		 * Emitted when a signal is dragged over the editor
 		 *
 		 * Return value: TRUE if a signal handler can be dropped, FALSE otherwise
 		 */
-		gboolean ::drop_possible (GObject* iterator);
+		gboolean ::drop_possible (IAnjutaIterable* iterator);
 		
 		/* IAnjutaEditorGladeSignal::drop
 		 * @obj: self
-		 * @iter: a IAnjutaIterator of the position where drop happens
+		 * @iter: a IAnjutaIterable of the position where drop happens
 		 * @signal_data: Signal data in form "widget:signal:handler", e.g.
 		 * "GtkToggleButton:toggled:on_toggle_button_toggled"
 		 *
 		 * Emitted when a signal was received per drag & drop
 		 *
 		 */
-		void ::drop (GObject* iterator, const gchar* signal_data);
+		void ::drop (IAnjutaIterable* iterator, const gchar* signal_data);
 	}	
 }
 
diff --git a/plugins/language-support-vala/libanjuta-3.0.vapi b/plugins/language-support-vala/libanjuta-3.0.vapi
index 1f0ff64..aba0987 100644
--- a/plugins/language-support-vala/libanjuta-3.0.vapi
+++ b/plugins/language-support-vala/libanjuta-3.0.vapi
@@ -1242,8 +1242,8 @@ namespace IAnjuta {
 	[CCode (cheader_filename = "libanjuta/interfaces/libanjuta-interfaces.h")]
 	public interface EditorGladeSignal : IAnjuta.Editor, GLib.Object {
 		public static GLib.Quark error_quark ();
-		public virtual signal void drop (GLib.Object iterator, string signal_data);
-		public virtual signal bool drop_possible (GLib.Object iterator);
+		public virtual signal void drop (IAnjuta.Iterable iterator, string signal_data);
+		public virtual signal bool drop_possible (IAnjuta.Iterable iterator);
 	}
 	[CCode (cheader_filename = "libanjuta/interfaces/libanjuta-interfaces.h")]
 	public interface EditorGoto : IAnjuta.Editor, GLib.Object {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]