diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-19 03:26:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-19 04:01:29 +0800 |
commit | c0d998229d5a3d2b65445b9025de7b23112f4063 (patch) | |
tree | 49f0f2e6e7da31967cf412cbd98c92f5a7856765 /smime | |
parent | 00d56cd32c5d0a7f49567d5241ba0d6fd80940bb (diff) | |
download | gsoc2013-evolution-c0d998229d5a3d2b65445b9025de7b23112f4063.tar.gz gsoc2013-evolution-c0d998229d5a3d2b65445b9025de7b23112f4063.tar.zst gsoc2013-evolution-c0d998229d5a3d2b65445b9025de7b23112f4063.zip |
Stop abusing forward declarations.
Diffstat (limited to 'smime')
-rw-r--r-- | smime/gui/cert-trust-dialog.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/smime/gui/cert-trust-dialog.h b/smime/gui/cert-trust-dialog.h index abdeb4d2ff..c4852aac66 100644 --- a/smime/gui/cert-trust-dialog.h +++ b/smime/gui/cert-trust-dialog.h @@ -24,9 +24,12 @@ #ifndef _CERT_TRUST_DIALOG_H_ #define _CERT_TRUST_DIALOG_H -struct _GtkWidget; -struct _ECert; +#include <gtk/gtk.h> -struct _GtkWidget* cert_trust_dialog_show (struct _ECert *cert); +G_BEGIN_DECLS + +GtkWidget* cert_trust_dialog_show (ECert *cert); + +G_END_DECLS #endif /* _CERT_TRUST_DIALOG_H_ */ |