gtksourceview r2264 - in branches/gtksourcecompletion: docs/reference gtksourceview



Author: icq
Date: Fri Apr 10 22:52:56 2009
New Revision: 2264
URL: http://svn.gnome.org/viewvc/gtksourceview?rev=2264&view=rev

Log:
Minor doc fixes.


Modified:
   branches/gtksourcecompletion/docs/reference/gtksourceview-2.0-sections.txt
   branches/gtksourcecompletion/docs/reference/gtksourceview-docs.sgml
   branches/gtksourcecompletion/gtksourceview/gtksourcecompletion.c
   branches/gtksourcecompletion/gtksourceview/gtksourcecompletion.h
   branches/gtksourcecompletion/gtksourceview/gtksourcecompletioninfo.h
   branches/gtksourcecompletion/gtksourceview/gtksourcecompletionproposal.c
   branches/gtksourcecompletion/gtksourceview/gtksourcecompletiontrigger.c

Modified: branches/gtksourcecompletion/docs/reference/gtksourceview-2.0-sections.txt
==============================================================================
--- branches/gtksourcecompletion/docs/reference/gtksourceview-2.0-sections.txt	(original)
+++ branches/gtksourcecompletion/docs/reference/gtksourceview-2.0-sections.txt	Fri Apr 10 22:52:56 2009
@@ -307,8 +307,6 @@
 gtk_source_completion_get_active_trigger
 gtk_source_completion_finish
 gtk_source_completion_filter_proposals
-gtk_source_completion_set_active
-gtk_source_completion_get_active
 gtk_source_completion_get_bottom_bar
 gtk_source_completion_get_info_widget
 gtk_source_completion_get_page_pos

Modified: branches/gtksourcecompletion/docs/reference/gtksourceview-docs.sgml
==============================================================================
--- branches/gtksourcecompletion/docs/reference/gtksourceview-docs.sgml	(original)
+++ branches/gtksourcecompletion/docs/reference/gtksourceview-docs.sgml	Fri Apr 10 22:52:56 2009
@@ -16,6 +16,7 @@
     <xi:include href="xml/buffer.xml"/>
     <xi:include href="xml/completion.xml"/>
     <xi:include href="xml/completioninfo.xml"/>
+    <xi:include href="xml/completionitem.xml"/>
     <xi:include href="xml/completionproposal.xml"/>
     <xi:include href="xml/completionprovider.xml"/>
     <xi:include href="xml/completiontrigger.xml"/>

Modified: branches/gtksourcecompletion/gtksourceview/gtksourcecompletion.c
==============================================================================
--- branches/gtksourcecompletion/gtksourceview/gtksourcecompletion.c	(original)
+++ branches/gtksourcecompletion/gtksourceview/gtksourcecompletion.c	Fri Apr 10 22:52:56 2009
@@ -41,7 +41,7 @@
 
 #define GTK_SOURCE_COMPLETION_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object),\
 						  GTK_TYPE_SOURCE_COMPLETION,           \
-						  GtkSourceCompletionPriv))
+						  GtkSourceCompletionPrivate))
 
 enum
 {
@@ -96,7 +96,7 @@
 	GtkSourceCompletionFilterFunc filter_func;
 };
 
-struct _GtkSourceCompletionPriv
+struct _GtkSourceCompletionPrivate
 {
 	/* Widget and popup variables*/
 	GtkWidget *info_window;
@@ -1203,7 +1203,7 @@
 	GtkObjectClass *gtkobject_class = GTK_OBJECT_CLASS (klass);
 	GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
 	
-	g_type_class_add_private (klass, sizeof (GtkSourceCompletionPriv));
+	g_type_class_add_private (klass, sizeof (GtkSourceCompletionPrivate));
 	
 	object_class->get_property = gtk_source_completion_get_property;
 	object_class->set_property = gtk_source_completion_set_property;

Modified: branches/gtksourcecompletion/gtksourceview/gtksourcecompletion.h
==============================================================================
--- branches/gtksourcecompletion/gtksourceview/gtksourcecompletion.h	(original)
+++ branches/gtksourcecompletion/gtksourceview/gtksourcecompletion.h	Fri Apr 10 22:52:56 2009
@@ -49,7 +49,7 @@
 typedef gboolean (* GtkSourceCompletionFilterFunc) (GtkSourceCompletionProposal *proposal,
 						    gpointer     user_data);
 
-typedef struct _GtkSourceCompletionPriv GtkSourceCompletionPriv;
+typedef struct _GtkSourceCompletionPrivate GtkSourceCompletionPrivate;
 typedef struct _GtkSourceCompletion GtkSourceCompletion;
 typedef struct _GtkSourceCompletionClass GtkSourceCompletionClass;
 
@@ -57,7 +57,7 @@
 {
 	GtkWindow parent;
 
-	GtkSourceCompletionPriv *priv;
+	GtkSourceCompletionPrivate *priv;
 };
 
 struct _GtkSourceCompletionClass

Modified: branches/gtksourcecompletion/gtksourceview/gtksourcecompletioninfo.h
==============================================================================
--- branches/gtksourcecompletion/gtksourceview/gtksourcecompletioninfo.h	(original)
+++ branches/gtksourcecompletion/gtksourceview/gtksourcecompletioninfo.h	Fri Apr 10 22:52:56 2009
@@ -33,7 +33,7 @@
 #define GTK_SOURCE_COMPLETION_INFO(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_SOURCE_COMPLETION_INFO, GtkSourceCompletionInfo))
 #define GTK_SOURCE_COMPLETION_INFO_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_SOURCE_COMPLETION_INFO, GtkSourceCompletionInfoClass)
 #define GTK_IS_SOURCE_COMPLETION_INFO(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_SOURCE_COMPLETION_INFO))
-#define GTK_SOURCE_COMPLETION_IS_INFO_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SOURCE_COMPLETION_INFO))
+#define GTK_IS_SOURCE_COMPLETION_INFO_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_SOURCE_COMPLETION_INFO))
 #define GTK_SOURCE_COMPLETION_INFO_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_SOURCE_COMPLETION_INFO, GtkSourceCompletionInfoClass))
 
 typedef struct _GtkSourceCompletionInfoPrivate GtkSourceCompletionInfoPrivate;

Modified: branches/gtksourcecompletion/gtksourceview/gtksourcecompletionproposal.c
==============================================================================
--- branches/gtksourcecompletion/gtksourceview/gtksourcecompletionproposal.c	(original)
+++ branches/gtksourcecompletion/gtksourceview/gtksourcecompletionproposal.c	Fri Apr 10 22:52:56 2009
@@ -180,6 +180,7 @@
 /**
  * gtk_source_completion_proposal_activate:
  * @proposal: The #GtkSourceCompletionProposal
+ * @buffer: The #GtkSourceBuffer
  * 
  * This emits the "activate" signal on @proposal. This function is generally 
  * called when @proposal is activated from the completion window. 

Modified: branches/gtksourcecompletion/gtksourceview/gtksourcecompletiontrigger.c
==============================================================================
--- branches/gtksourcecompletion/gtksourceview/gtksourcecompletiontrigger.c	(original)
+++ branches/gtksourcecompletion/gtksourceview/gtksourcecompletiontrigger.c	Fri Apr 10 22:52:56 2009
@@ -62,7 +62,7 @@
 }
 
 /**
- * gtk_source_completion_trigger_event:
+ * gtk_source_completion_trigger_activate:
  * @self: the #GtkSourceCompletionTrigger
  *
  * Calling this function, the completion call to all providers to get data and, if 



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