From 8349f25653056162d93d59e9ff0e84fa9a569abc Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Fri, 8 Apr 2011 20:09:30 +0200 Subject: gcr: Hide the widget class structs, until we finalize their super classes. Hide the following GcrCertificateWidget, GcrCertificateWidgetClass, GcrKeyWidget, GcrKeyWidgetClass, GcrUnlockOptionsWidget, GcrUnlockOptionsWidgetClass Currently these are derived from GtkAlignment, because we haven't yet figured out their implementation correctly. We want them to be derived from GtkWidget, or GtkBin (if it makes sense to have a child widget). --- gcr/gcr-certificate-widget.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'gcr/gcr-certificate-widget.c') diff --git a/gcr/gcr-certificate-widget.c b/gcr/gcr-certificate-widget.c index e749259..82a8d91 100644 --- a/gcr/gcr-certificate-widget.c +++ b/gcr/gcr-certificate-widget.c @@ -48,7 +48,6 @@ /** * GcrCertificateWidget: - * @parent: The parent object * * A widget that displays a certificate. */ @@ -65,6 +64,18 @@ enum { PROP_ATTRIBUTES }; +struct _GcrCertificateWidget { + GtkAlignment parent; + + /*< private >*/ + GcrCertificateWidgetPrivate *pv; +}; + +struct _GcrCertificateWidgetClass { + /*< private >*/ + GtkAlignmentClass parent_class; +}; + struct _GcrCertificateWidgetPrivate { GcrViewer *viewer; GcrCertificateRenderer *renderer; -- cgit v1.2.1