diff options
| author | Nicolas Clapies <nclapies@entrouvert.com> | 2005-11-15 17:59:38 +0000 |
|---|---|---|
| committer | Nicolas Clapies <nclapies@entrouvert.com> | 2005-11-15 17:59:38 +0000 |
| commit | 65b121cb13308f8586cfacd50f12f5f48950c3e6 (patch) | |
| tree | 0a2f651ea818277e21b2cac20e2ad8ac9cff4bae | |
| parent | a8219526dcaab297da858318654766cb908fd455 (diff) | |
Renamed lasso_data_service_need_user_interaction() to lasso_data_service_need_redirect_user().
| -rw-r--r-- | lasso/id-wsf/data_service.c | 4 | ||||
| -rw-r--r-- | lasso/id-wsf/data_service.h | 4 | ||||
| -rw-r--r-- | swig/Lasso-wsf.i | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lasso/id-wsf/data_service.c b/lasso/id-wsf/data_service.c index f37f740a..095bf366 100644 --- a/lasso/id-wsf/data_service.c +++ b/lasso/id-wsf/data_service.c @@ -124,7 +124,7 @@ lasso_data_service_add_query_item(LassoDataService *service, } gint -lasso_data_service_need_user_interaction(LassoDataService *service, const char *redirectUrl) +lasso_data_service_need_redirect_user(LassoDataService *service, const char *redirectUrl) { LassoWsfProfile *profile; LassoSoapBody *body; @@ -289,7 +289,7 @@ lasso_data_service_process_query_msg(LassoDataService *service, const char *mess LassoWsfProfile *profile; int rc; gchar *service_type; - + /* FIXME: another way to get the service type ? */ { LassoSoapEnvelope *envelope; diff --git a/lasso/id-wsf/data_service.h b/lasso/id-wsf/data_service.h index bbdd0a70..80cfbd68 100644 --- a/lasso/id-wsf/data_service.h +++ b/lasso/id-wsf/data_service.h @@ -117,8 +117,8 @@ LASSO_EXPORT gint lasso_data_service_process_modify_msg(LassoDataService *servic LASSO_EXPORT gint lasso_data_service_process_modify_response_msg(LassoDataService *service, const gchar *soap_msg); -LASSO_EXPORT gboolean lasso_data_service_need_user_interaction(LassoDataService *service, - const char *redirectUrl); +LASSO_EXPORT gboolean lasso_data_service_need_redirect_user(LassoDataService *service, + const char *redirectUrl); LASSO_EXPORT gchar* lasso_data_service_get_redirect_request_url(LassoDataService *service); diff --git a/swig/Lasso-wsf.i b/swig/Lasso-wsf.i index 02167152..4edd69bf 100644 --- a/swig/Lasso-wsf.i +++ b/swig/Lasso-wsf.i @@ -819,7 +819,7 @@ typedef struct { %newobject getRedirectRequestUrl; char* getRedirectRequestUrl(); - int needUserInteraction(const char *redirectUrl); + int needRedirectUser(const char *redirectUrl); } %{ @@ -916,7 +916,7 @@ typedef struct { #define LassoDataService_getAnswerForItemId(self,itemId) get_xml_string(lasso_data_service_get_answer_for_item_id(self, itemId)) #define LassoDataService_getRedirectRequestUrl lasso_data_service_get_redirect_request_url -#define LassoDataService_needUserInteraction lasso_data_service_need_user_interaction +#define LassoDataService_needRedirectUser lasso_data_service_need_redirect_user %} |
