summaryrefslogtreecommitdiff
path: root/lib/xdg-app-remote.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2016-05-06 16:03:27 +0200
committerAlexander Larsson <alexl@redhat.com>2016-05-06 16:03:27 +0200
commit1ffdf27d927c7944e3bce9b1cd3c101d823fd826 (patch)
treeb91268da5ea5f1d224977ce4e5bbb75386d9a424 /lib/xdg-app-remote.h
parentafa12a446fcc473eb740146805856e76ad82b4af (diff)
downloadxdg-app-1ffdf27d927c7944e3bce9b1cd3c101d823fd826.tar.gz
uncruftify: Initial run, all non-problematic changes
Diffstat (limited to 'lib/xdg-app-remote.h')
-rw-r--r--lib/xdg-app-remote.h26
1 files changed, 14 insertions, 12 deletions
diff --git a/lib/xdg-app-remote.h b/lib/xdg-app-remote.h
index 2040767..31154da 100644
--- a/lib/xdg-app-remote.h
+++ b/lib/xdg-app-remote.h
@@ -18,7 +18,7 @@
* Alexander Larsson <alexl@redhat.com>
*/
-#if !defined (__XDG_APP_H_INSIDE__) && !defined (XDG_APP_COMPILATION)
+#if !defined(__XDG_APP_H_INSIDE__) && !defined(XDG_APP_COMPILATION)
#error "Only <xdg-app.h> can be included directly."
#endif
@@ -30,34 +30,36 @@ typedef struct _XdgAppRemote XdgAppRemote;
#include <gio/gio.h>
#include <xdg-app-remote-ref.h>
-#define XDG_APP_TYPE_REMOTE xdg_app_remote_get_type()
+#define XDG_APP_TYPE_REMOTE xdg_app_remote_get_type ()
#define XDG_APP_REMOTE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XDG_APP_TYPE_REMOTE, XdgAppRemote))
#define XDG_APP_IS_REMOTE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XDG_APP_TYPE_REMOTE))
XDG_APP_EXTERN GType xdg_app_remote_get_type (void);
-struct _XdgAppRemote {
+struct _XdgAppRemote
+{
GObject parent;
};
-typedef struct {
+typedef struct
+{
GObjectClass parent_class;
} XdgAppRemoteClass;
#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
-G_DEFINE_AUTOPTR_CLEANUP_FUNC(XdgAppRemote, g_object_unref)
+G_DEFINE_AUTOPTR_CLEANUP_FUNC (XdgAppRemote, g_object_unref)
#endif
-XDG_APP_EXTERN const char * xdg_app_remote_get_name (XdgAppRemote *self);
+XDG_APP_EXTERN const char * xdg_app_remote_get_name (XdgAppRemote * self);
XDG_APP_EXTERN GFile * xdg_app_remote_get_appstream_dir (XdgAppRemote *self,
const char *arch);
XDG_APP_EXTERN GFile * xdg_app_remote_get_appstream_timestamp (XdgAppRemote *self,
const char *arch);
-XDG_APP_EXTERN char * xdg_app_remote_get_url (XdgAppRemote *self);
-XDG_APP_EXTERN char * xdg_app_remote_get_title (XdgAppRemote *self);
-XDG_APP_EXTERN gboolean xdg_app_remote_get_gpg_verify (XdgAppRemote *self);
-XDG_APP_EXTERN gboolean xdg_app_remote_get_noenumerate (XdgAppRemote *self);
-XDG_APP_EXTERN gboolean xdg_app_remote_get_disabled (XdgAppRemote *self);
-XDG_APP_EXTERN int xdg_app_remote_get_prio (XdgAppRemote *self);
+XDG_APP_EXTERN char * xdg_app_remote_get_url (XdgAppRemote *self);
+XDG_APP_EXTERN char * xdg_app_remote_get_title (XdgAppRemote *self);
+XDG_APP_EXTERN gboolean xdg_app_remote_get_gpg_verify (XdgAppRemote *self);
+XDG_APP_EXTERN gboolean xdg_app_remote_get_noenumerate (XdgAppRemote *self);
+XDG_APP_EXTERN gboolean xdg_app_remote_get_disabled (XdgAppRemote *self);
+XDG_APP_EXTERN int xdg_app_remote_get_prio (XdgAppRemote *self);
#endif /* __XDG_APP_REMOTE_H__ */