Bump gtk-doc dependency to 1.11 for nicer index-generation.

2008-11-21  Matthias Clasen <mclasen@redhat.com>

        * configure.in: Bump gtk-doc dependency to 1.11 for
        nicer index-generation.

2008-11-21  Matthias Clasen <mclasen@redhat.com>

        * gtk/gtkmountoperation.[hc]: Declare structs in a way that
        gtk-doc understands.



svn path=/trunk/; revision=21794
This commit is contained in:
Matthias Clasen
2008-11-21 08:20:19 +00:00
committed by Matthias Clasen
parent ba471ea3b2
commit c428039493
4 changed files with 17 additions and 7 deletions

View File

@ -1,3 +1,13 @@
2008-11-21 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump gtk-doc dependency to 1.11 for
nicer index-generation.
2008-11-21 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkmountoperation.[hc]: Declare structs in a way that
gtk-doc understands.
2008-11-17 Christian Dywan <christian@imendio.com> 2008-11-17 Christian Dywan <christian@imendio.com>
Bug 377699 realizing gtk.Progress() causes SEGV Bug 377699 realizing gtk.Progress() causes SEGV

View File

@ -1906,7 +1906,7 @@ fi
# Checks for gtk-doc and docbook-tools # Checks for gtk-doc and docbook-tools
################################################## ##################################################
GTK_DOC_CHECK([1.8]) GTK_DOC_CHECK([1.11])
AC_CHECK_PROG(DB2HTML, db2html, true, false) AC_CHECK_PROG(DB2HTML, db2html, true, false)
AM_CONDITIONAL(HAVE_DOCBOOK, $DB2HTML) AM_CONDITIONAL(HAVE_DOCBOOK, $DB2HTML)

View File

@ -102,7 +102,7 @@ enum {
}; };
struct GtkMountOperationPrivate { struct _GtkMountOperationPrivate {
GtkWindow *parent_window; GtkWindow *parent_window;
GtkDialog *dialog; GtkDialog *dialog;
GdkScreen *screen; GdkScreen *screen;

View File

@ -40,18 +40,18 @@ G_BEGIN_DECLS
#define GTK_IS_MOUNT_OPERATION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GTK_TYPE_MOUNT_OPERATION)) #define GTK_IS_MOUNT_OPERATION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GTK_TYPE_MOUNT_OPERATION))
#define GTK_MOUNT_OPERATION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GTK_TYPE_MOUNT_OPERATION, GtkMountOperationClass)) #define GTK_MOUNT_OPERATION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GTK_TYPE_MOUNT_OPERATION, GtkMountOperationClass))
typedef struct GtkMountOperation GtkMountOperation; typedef struct _GtkMountOperation GtkMountOperation;
typedef struct GtkMountOperationClass GtkMountOperationClass; typedef struct _GtkMountOperationClass GtkMountOperationClass;
typedef struct GtkMountOperationPrivate GtkMountOperationPrivate; typedef struct _GtkMountOperationPrivate GtkMountOperationPrivate;
struct GtkMountOperation struct _GtkMountOperation
{ {
GMountOperation parent_instance; GMountOperation parent_instance;
GtkMountOperationPrivate *priv; GtkMountOperationPrivate *priv;
}; };
struct GtkMountOperationClass struct _GtkMountOperationClass
{ {
GMountOperationClass parent_class; GMountOperationClass parent_class;