[gnome-calendar/ui-rewrite] format: ordering content of headers
- From: Erick Pérez Castellanos <erickpc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-calendar/ui-rewrite] format: ordering content of headers
- Date: Mon, 29 Jul 2013 17:37:08 +0000 (UTC)
commit cd36456ae6dc5010ff667489562e3b81d91d1635
Author: Erick Pérez Castellanos <erick red gmail com>
Date: Thu Jul 4 14:16:51 2013 -0400
format: ordering content of headers
Make gcal-application.h and gcal-event-widget.h the same as
the rest.
src/gcal-application.h | 8 ++++----
src/gcal-event-widget.h | 10 +++++-----
2 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/src/gcal-application.h b/src/gcal-application.h
index c270677..39490f1 100644
--- a/src/gcal-application.h
+++ b/src/gcal-application.h
@@ -36,14 +36,14 @@ G_BEGIN_DECLS
typedef struct _GcalApplicationClass GcalApplicationClass;
typedef struct _GcalApplication GcalApplication;
-struct _GcalApplicationClass
+struct _GcalApplication
{
- GtkApplicationClass parent_class;
+ GtkApplication parent;
};
-struct _GcalApplication
+struct _GcalApplicationClass
{
- GtkApplication parent_instance;
+ GtkApplicationClass parent_class;
};
GType gcal_application_get_type (void) G_GNUC_CONST;
diff --git a/src/gcal-event-widget.h b/src/gcal-event-widget.h
index 538eba7..328741c 100644
--- a/src/gcal-event-widget.h
+++ b/src/gcal-event-widget.h
@@ -37,6 +37,11 @@ G_BEGIN_DECLS
typedef struct _GcalEventWidget GcalEventWidget;
typedef struct _GcalEventWidgetClass GcalEventWidgetClass;
+struct _GcalEventWidget
+{
+ GtkWidget parent;
+};
+
struct _GcalEventWidgetClass
{
GtkWidgetClass parent_class;
@@ -45,11 +50,6 @@ struct _GcalEventWidgetClass
void (*activate) (GcalEventWidget *event_widget);
};
-struct _GcalEventWidget
-{
- GtkWidget parent;
-};
-
GType gcal_event_widget_get_type (void);
GtkWidget* gcal_event_widget_new (gchar *uuid);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]