From 0a2f5576862236062bcce1391d75db06d36769c3 Mon Sep 17 00:00:00 2001 From: Emmanuel Raviart Date: Thu, 30 Dec 2004 09:50:45 +0000 Subject: Corrected result type of lasso_saml_assertion_new. --- lasso/xml/saml_assertion.c | 2 +- lasso/xml/saml_assertion.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lasso/xml/saml_assertion.c b/lasso/xml/saml_assertion.c index 9f9d286b..cfc9c74d 100644 --- a/lasso/xml/saml_assertion.c +++ b/lasso/xml/saml_assertion.c @@ -206,7 +206,7 @@ lasso_saml_assertion_get_type() * * Return value: the new @LassoSamlAssertion **/ -LassoNode* +LassoSamlAssertion* lasso_saml_assertion_new() { return g_object_new(LASSO_TYPE_SAML_ASSERTION, NULL); diff --git a/lasso/xml/saml_assertion.h b/lasso/xml/saml_assertion.h index 84cbbb64..c5330eb6 100644 --- a/lasso/xml/saml_assertion.h +++ b/lasso/xml/saml_assertion.h @@ -89,7 +89,7 @@ struct _LassoSamlAssertionClass { }; LASSO_EXPORT GType lasso_saml_assertion_get_type(void); -LASSO_EXPORT LassoNode* lasso_saml_assertion_new(void); +LASSO_EXPORT LassoSamlAssertion* lasso_saml_assertion_new(void); #ifdef __cplusplus } -- cgit