[gnome-keyring/introspection: 2/5] gcr: mark many fields as private



commit adf0a62603757569df4eee67b4069ea98fc99fda
Author: Evan Nemerson <evan coeus-group com>
Date:   Sat Jul 30 12:32:59 2011 -0700

    gcr: mark many fields as private

 gcr/gcr-certificate-exporter.h |    1 +
 gcr/gcr-certificate-widget.c   |    3 +--
 gcr/gcr-display-scrolled.h     |    1 +
 gcr/gcr-display-view.h         |    1 +
 gcr/gcr-gnupg-collection.h     |    1 +
 gcr/gcr-gnupg-key.h            |    3 +--
 gcr/gcr-gnupg-process.h        |    1 +
 gcr/gcr-import-dialog.h        |    1 +
 gcr/gcr-live-search.h          |    3 +--
 gcr/gcr-memory-icon.h          |    3 +--
 10 files changed, 10 insertions(+), 8 deletions(-)
---
diff --git a/gcr/gcr-certificate-exporter.h b/gcr/gcr-certificate-exporter.h
index 3ab43d2..fd04a20 100644
--- a/gcr/gcr-certificate-exporter.h
+++ b/gcr/gcr-certificate-exporter.h
@@ -45,6 +45,7 @@ typedef struct _GcrCertificateExporterClass GcrCertificateExporterClass;
 typedef struct _GcrCertificateExporterPrivate GcrCertificateExporterPrivate;
 
 struct _GcrCertificateExporter {
+	/*< private >*/
 	GObject parent;
 	GcrCertificateExporterPrivate *pv;
 };
diff --git a/gcr/gcr-certificate-widget.c b/gcr/gcr-certificate-widget.c
index 82a8d91..d27e3af 100644
--- a/gcr/gcr-certificate-widget.c
+++ b/gcr/gcr-certificate-widget.c
@@ -65,9 +65,8 @@ enum {
 };
 
 struct _GcrCertificateWidget {
-	GtkAlignment parent;
-
 	/*< private >*/
+	GtkAlignment parent;
 	GcrCertificateWidgetPrivate *pv;
 };
 
diff --git a/gcr/gcr-display-scrolled.h b/gcr/gcr-display-scrolled.h
index f4ca02b..8c4a4ae 100644
--- a/gcr/gcr-display-scrolled.h
+++ b/gcr/gcr-display-scrolled.h
@@ -39,6 +39,7 @@ typedef struct _GcrDisplayScrolledClass GcrDisplayScrolledClass;
 typedef struct _GcrDisplayScrolledPrivate GcrDisplayScrolledPrivate;
 
 struct _GcrDisplayScrolled {
+	/*< private >*/
 	GtkScrolledWindow parent;
 	GcrDisplayScrolledPrivate *pv;
 };
diff --git a/gcr/gcr-display-view.h b/gcr/gcr-display-view.h
index d1c84f7..6d2e17c 100644
--- a/gcr/gcr-display-view.h
+++ b/gcr/gcr-display-view.h
@@ -43,6 +43,7 @@ typedef struct _GcrDisplayViewClass GcrDisplayViewClass;
 typedef struct _GcrDisplayViewPrivate GcrDisplayViewPrivate;
 
 struct _GcrDisplayView {
+	/*< private >*/
 	GtkTextView parent;
 	GcrDisplayViewPrivate *pv;
 };
diff --git a/gcr/gcr-gnupg-collection.h b/gcr/gcr-gnupg-collection.h
index ab52a1e..a626cef 100644
--- a/gcr/gcr-gnupg-collection.h
+++ b/gcr/gcr-gnupg-collection.h
@@ -43,6 +43,7 @@ typedef struct _GcrGnupgCollectionClass GcrGnupgCollectionClass;
 typedef struct _GcrGnupgCollectionPrivate GcrGnupgCollectionPrivate;
 
 struct _GcrGnupgCollection {
+	/*< private >*/
 	GObject parent;
 	GcrGnupgCollectionPrivate *pv;
 };
diff --git a/gcr/gcr-gnupg-key.h b/gcr/gcr-gnupg-key.h
index 2564edb..e62938d 100644
--- a/gcr/gcr-gnupg-key.h
+++ b/gcr/gcr-gnupg-key.h
@@ -46,9 +46,8 @@ typedef struct _GcrGnupgKeyClass GcrGnupgKeyClass;
 typedef struct _GcrGnupgKeyPrivate GcrGnupgKeyPrivate;
 
 struct _GcrGnupgKey {
-	GObject parent;
-
 	/*< private >*/
+	GObject parent;
 	GcrGnupgKeyPrivate *pv;
 };
 
diff --git a/gcr/gcr-gnupg-process.h b/gcr/gcr-gnupg-process.h
index 143f36d..fc81e6a 100644
--- a/gcr/gcr-gnupg-process.h
+++ b/gcr/gcr-gnupg-process.h
@@ -43,6 +43,7 @@ typedef struct _GcrGnupgProcessClass GcrGnupgProcessClass;
 typedef struct _GcrGnupgProcessPrivate GcrGnupgProcessPrivate;
 
 struct _GcrGnupgProcess {
+	/*< private >*/
 	GObject parent;
 	GcrGnupgProcessPrivate *pv;
 };
diff --git a/gcr/gcr-import-dialog.h b/gcr/gcr-import-dialog.h
index 00e147e..f5261d2 100644
--- a/gcr/gcr-import-dialog.h
+++ b/gcr/gcr-import-dialog.h
@@ -42,6 +42,7 @@ typedef struct _GcrImportDialogClass GcrImportDialogClass;
 typedef struct _GcrImportDialogPrivate GcrImportDialogPrivate;
 
 struct _GcrImportDialog {
+	/*< private >*/
 	GtkDialog parent;
 	GcrImportDialogPrivate *pv;
 };
diff --git a/gcr/gcr-live-search.h b/gcr/gcr-live-search.h
index 7dff29b..cf048fd 100644
--- a/gcr/gcr-live-search.h
+++ b/gcr/gcr-live-search.h
@@ -44,9 +44,8 @@ typedef struct _GcrLiveSearchClass GcrLiveSearchClass;
 typedef struct _GcrLiveSearchPrivate GcrLiveSearchPrivate;
 
 struct _GcrLiveSearch {
+	/*< private >*/
 	GtkBox parent;
-
-	/* <private> */
 	GcrLiveSearchPrivate *pv;
 };
 
diff --git a/gcr/gcr-memory-icon.h b/gcr/gcr-memory-icon.h
index 61c1542..71da9e5 100644
--- a/gcr/gcr-memory-icon.h
+++ b/gcr/gcr-memory-icon.h
@@ -40,9 +40,8 @@ typedef struct _GcrMemoryIconClass GcrMemoryIconClass;
 typedef struct _GcrMemoryIconPrivate GcrMemoryIconPrivate;
 
 struct _GcrMemoryIcon {
-	GObject parent;
-
 	/*< private >*/
+	GObject parent;
 	GcrMemoryIconPrivate *pv;
 };
 



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