summaryrefslogtreecommitdiff
path: root/gtk/gtkimcontext.c
diff options
context:
space:
mode:
authorBen Iofel <iofelben@gmail.com>2016-02-24 14:37:35 -0500
committerBen Iofel <iofelben@gmail.com>2016-02-24 14:37:35 -0500
commite390e3b8e34fb7701f5996be3dec9bc12789bb72 (patch)
tree1eae6ad2c84061caf377584b351dd3335bd82dd2 /gtk/gtkimcontext.c
parentacbb0c4bddc2839d225db3ca8640c1fec94b0b78 (diff)
downloadgtk+-e390e3b8e34fb7701f5996be3dec9bc12789bb72.tar.gz
GtkIMContext: remove broken anchors in documentation
Diffstat (limited to 'gtk/gtkimcontext.c')
-rw-r--r--gtk/gtkimcontext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkimcontext.c b/gtk/gtkimcontext.c
index be0f629a11..64f0f69d6e 100644
--- a/gtk/gtkimcontext.c
+++ b/gtk/gtkimcontext.c
@@ -60,7 +60,7 @@
* these four functions:
*
* |[<!-- language="C" -->
- * void im_module_init(#GTypeModule *module);
+ * void im_module_init(GTypeModule *module);
* ]|
* This function should register the #GType of the #GtkIMContext subclass which
* implements the input method by means of g_type_module_register_type(). Note
@@ -73,7 +73,7 @@
* Here goes any cleanup code your input method might require on module unload.
*
* |[<!-- language="C" -->
- * void im_module_list(const #GtkIMContextInfo ***contexts, int *n_contexts)
+ * void im_module_list(const GtkIMContextInfo ***contexts, int *n_contexts)
* {
* *contexts = info_list;
* *n_contexts = G_N_ELEMENTS (info_list);
@@ -85,7 +85,7 @@
* provided input method.
*
* |[<!-- language="C" -->
- * #GtkIMContext * im_module_create(const #gchar *context_id);
+ * GtkIMContext * im_module_create(const gchar *context_id);
* ]|
* This function should return a pointer to a newly created instance of the
* #GtkIMContext subclass identified by @context_id. The context ID is the same