From 5c847d54fa4f1f660114000dfbea2d25b7306b0b Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Wed, 27 Jan 2016 17:39:48 +0100 Subject: [PATCH] Avoid gtk-doc warnings: multiple ID for constraint linkend This fixes the huge number of gtk-doc warnings that look like this: Warning: multiple "IDs" for constraint linkend: XdgAppRef Based on: https://mail.gnome.org/archives/commits-list/2010-September/msg00222.html --- lib/xdg-app-installation.h | 4 ++-- lib/xdg-app-installed-ref.h | 4 ++-- lib/xdg-app-ref.h | 4 ++-- lib/xdg-app-remote-ref.h | 4 ++-- lib/xdg-app-remote.h | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/xdg-app-installation.h b/lib/xdg-app-installation.h index 52213c89..de437dda 100644 --- a/lib/xdg-app-installation.h +++ b/lib/xdg-app-installation.h @@ -25,7 +25,7 @@ #ifndef __XDG_APP_INSTALLATION_H__ #define __XDG_APP_INSTALLATION_H__ -typedef struct XdgAppInstallation XdgAppInstallation; +typedef struct _XdgAppInstallation XdgAppInstallation; #include #include @@ -37,7 +37,7 @@ typedef struct XdgAppInstallation XdgAppInstallation; XDG_APP_EXTERN GType xdg_app_installation_get_type (void); -struct XdgAppInstallation { +struct _XdgAppInstallation { GObject parent; }; diff --git a/lib/xdg-app-installed-ref.h b/lib/xdg-app-installed-ref.h index 94dbbab8..ee591659 100644 --- a/lib/xdg-app-installed-ref.h +++ b/lib/xdg-app-installed-ref.h @@ -25,7 +25,7 @@ #ifndef __XDG_APP_INSTALLED_REF_H__ #define __XDG_APP_INSTALLED_REF_H__ -typedef struct XdgAppInstalledRef XdgAppInstalledRef; +typedef struct _XdgAppInstalledRef XdgAppInstalledRef; #include #include @@ -36,7 +36,7 @@ typedef struct XdgAppInstalledRef XdgAppInstalledRef; XDG_APP_EXTERN GType xdg_app_installed_ref_get_type (void); -struct XdgAppInstalledRef { +struct _XdgAppInstalledRef { XdgAppRef parent; }; diff --git a/lib/xdg-app-ref.h b/lib/xdg-app-ref.h index 50b528a1..6c584272 100644 --- a/lib/xdg-app-ref.h +++ b/lib/xdg-app-ref.h @@ -25,7 +25,7 @@ #ifndef __XDG_APP_REF_H__ #define __XDG_APP_REF_H__ -typedef struct XdgAppRef XdgAppRef; +typedef struct _XdgAppRef XdgAppRef; #include @@ -35,7 +35,7 @@ typedef struct XdgAppRef XdgAppRef; XDG_APP_EXTERN GType xdg_app_ref_get_type (void); -struct XdgAppRef { +struct _XdgAppRef { GObject parent; }; diff --git a/lib/xdg-app-remote-ref.h b/lib/xdg-app-remote-ref.h index f348005f..b9868862 100644 --- a/lib/xdg-app-remote-ref.h +++ b/lib/xdg-app-remote-ref.h @@ -25,7 +25,7 @@ #ifndef __XDG_APP_REMOTE_REF_H__ #define __XDG_APP_REMOTE_REF_H__ -typedef struct XdgAppRemoteRef XdgAppRemoteRef; +typedef struct _XdgAppRemoteRef XdgAppRemoteRef; #include #include @@ -36,7 +36,7 @@ typedef struct XdgAppRemoteRef XdgAppRemoteRef; XDG_APP_EXTERN GType xdg_app_remote_ref_get_type (void); -struct XdgAppRemoteRef { +struct _XdgAppRemoteRef { XdgAppRef parent; }; diff --git a/lib/xdg-app-remote.h b/lib/xdg-app-remote.h index a50bbac4..e3867b3b 100644 --- a/lib/xdg-app-remote.h +++ b/lib/xdg-app-remote.h @@ -25,7 +25,7 @@ #ifndef __XDG_APP_REMOTE_H__ #define __XDG_APP_REMOTE_H__ -typedef struct XdgAppRemote XdgAppRemote; +typedef struct _XdgAppRemote XdgAppRemote; #include #include @@ -36,7 +36,7 @@ typedef struct XdgAppRemote XdgAppRemote; XDG_APP_EXTERN GType xdg_app_remote_get_type (void); -struct XdgAppRemote { +struct _XdgAppRemote { GObject parent; };