[gnome-pocket] Mark a few struct members as private
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-pocket] Mark a few struct members as private
- Date: Sat, 20 Sep 2014 18:01:32 +0000 (UTC)
commit f38e077d3b25b0d0cc0f39fe0b15d25c923be1dc
Author: Bastien Nocera <hadess hadess net>
Date: Sat Sep 20 19:25:39 2014 +0200
Mark a few struct members as private
gnome-pocket/gnome-pocket.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gnome-pocket/gnome-pocket.h b/gnome-pocket/gnome-pocket.h
index cfaafc5..2489f0d 100644
--- a/gnome-pocket/gnome-pocket.h
+++ b/gnome-pocket/gnome-pocket.h
@@ -31,20 +31,20 @@ G_BEGIN_DECLS
#define GNOME_IS_POCKET_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GNOME_TYPE_POCKET))
#define GNOME_POCKET_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GNOME_TYPE_POCKET, GnomePocketClass))
-typedef struct _GnomePocketClass GnomePocketClass;
typedef struct _GnomePocket GnomePocket;
+typedef struct _GnomePocketClass GnomePocketClass;
typedef struct _GnomePocketPrivate GnomePocketPrivate;
struct _GnomePocket
{
- GObject parent;
-
/*< private >*/
+ GObject parent;
GnomePocketPrivate *priv;
};
struct _GnomePocketClass
{
+ /*< private >*/
GObjectClass parent;
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]