summaryrefslogtreecommitdiff
path: root/atspi/atspi-gmain.c
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2018-05-17 15:20:48 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2018-05-17 15:20:48 +0100
commit899f95990a296632774a1e1e2f8c3a4dc3832382 (patch)
tree77851d9190c7f5c6557aaa213a7136e7546fd66c /atspi/atspi-gmain.c
parent32e3c1cdd092891b041e177a506d2e01ad2c4647 (diff)
downloadat-spi2-core-899f95990a296632774a1e1e2f8c3a4dc3832382.tar.gz
Remove spurious gtk-doc markers
The `/** … */` annotation is reserved for gtk-doc stanzas; both gtk-doc and the introspection scanner get very confused if generic comments use the same syntax.
Diffstat (limited to 'atspi/atspi-gmain.c')
-rw-r--r--atspi/atspi-gmain.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/atspi/atspi-gmain.c b/atspi/atspi-gmain.c
index 3ab985bc..588a60d1 100644
--- a/atspi/atspi-gmain.c
+++ b/atspi/atspi-gmain.c
@@ -33,7 +33,7 @@
#define _(x) dgettext (GETTEXT_PACKAGE, x)
#define N_(x) x
-/**
+/*
* DBusGMessageQueue:
* A GSource subclass for dispatching DBusConnection messages.
* We need this on top of the IO handlers, because sometimes
@@ -41,8 +41,8 @@
*/
typedef struct
{
- GSource source; /**< the parent GSource */
- DBusConnection *connection; /**< the connection to dispatch */
+ GSource source; /* the parent GSource */
+ DBusConnection *connection; /* the connection to dispatch */
} DBusGMessageQueue;
static gboolean message_queue_prepare (GSource *source,
@@ -95,11 +95,11 @@ message_queue_dispatch (GSource *source,
typedef struct
{
- GMainContext *context; /**< the main context */
- GSList *ios; /**< all IOHandler */
- GSList *timeouts; /**< all TimeoutHandler */
- DBusConnection *connection; /**< NULL if this is really for a server not a connection */
- GSource *message_queue_source; /**< DBusGMessageQueue */
+ GMainContext *context; /* the main context */
+ GSList *ios; /* all IOHandler */
+ GSList *timeouts; /* all TimeoutHandler */
+ DBusConnection *connection; /* NULL if this is really for a server not a connection */
+ GSource *message_queue_source; /* DBusGMessageQueue */
} ConnectionSetup;
@@ -510,7 +510,7 @@ connection_setup_new_from_old (GMainContext *context,
return cs;
}
-/** @} */ /* End of GLib bindings internals */
+/* @} */ /* End of GLib bindings internals */
/**
* atspi_dbus_connection_setup_with_g_main: (skip)