[libdazzle] app: align parameters to gnome style



commit a566dc7b862baa2a371a8c27989afc86140be84e
Author: Christian Hergert <chergert redhat com>
Date:   Wed Apr 24 14:59:54 2019 -0700

    app: align parameters to gnome style

 src/app/dzl-application.c |  4 ++--
 src/app/dzl-application.h | 22 +++++++++++-----------
 2 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/src/app/dzl-application.c b/src/app/dzl-application.c
index 5ba4ecb..3869844 100644
--- a/src/app/dzl-application.c
+++ b/src/app/dzl-application.c
@@ -90,8 +90,8 @@ static GParamSpec *properties [N_PROPS];
 G_DEFINE_TYPE_WITH_PRIVATE (DzlApplication, dzl_application, GTK_TYPE_APPLICATION)
 
 DzlApplication *
-dzl_application_new (const gchar *application_id,
-                     GApplicationFlags flags)
+dzl_application_new (const gchar       *application_id,
+                     GApplicationFlags  flags)
 {
   g_return_val_if_fail (application_id == NULL || g_application_id_is_valid (application_id), NULL);
 
diff --git a/src/app/dzl-application.h b/src/app/dzl-application.h
index 944f510..7fb0293 100644
--- a/src/app/dzl-application.h
+++ b/src/app/dzl-application.h
@@ -59,23 +59,23 @@ struct _DzlApplicationClass
 };
 
 DZL_AVAILABLE_IN_3_34
-DzlApplication     *dzl_application_new                  (const gchar *application_id,
-                                                          GApplicationFlags flags);
+DzlApplication     *dzl_application_new                  (const gchar       *application_id,
+                                                          GApplicationFlags  flags);
 DZL_AVAILABLE_IN_ALL
-DzlMenuManager     *dzl_application_get_menu_manager     (DzlApplication *self);
+DzlMenuManager     *dzl_application_get_menu_manager     (DzlApplication    *self);
 DZL_AVAILABLE_IN_ALL
-DzlShortcutManager *dzl_application_get_shortcut_manager (DzlApplication *self);
+DzlShortcutManager *dzl_application_get_shortcut_manager (DzlApplication    *self);
 DZL_AVAILABLE_IN_ALL
-DzlThemeManager    *dzl_application_get_theme_manager    (DzlApplication *self);
+DzlThemeManager    *dzl_application_get_theme_manager    (DzlApplication    *self);
 DZL_AVAILABLE_IN_ALL
-GMenu              *dzl_application_get_menu_by_id       (DzlApplication *self,
-                                                          const gchar    *menu_id);
+GMenu              *dzl_application_get_menu_by_id       (DzlApplication    *self,
+                                                          const gchar       *menu_id);
 DZL_AVAILABLE_IN_ALL
-void                dzl_application_add_resources        (DzlApplication *self,
-                                                          const gchar    *resource_path);
+void                dzl_application_add_resources        (DzlApplication    *self,
+                                                          const gchar       *resource_path);
 DZL_AVAILABLE_IN_ALL
-void                dzl_application_remove_resources     (DzlApplication *self,
-                                                          const gchar    *resource_path);
+void                dzl_application_remove_resources     (DzlApplication    *self,
+                                                          const gchar       *resource_path);
 
 G_END_DECLS
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]