From: helge Date: Mon, 5 Mar 2007 09:05:48 +0000 (+0000) Subject: fixed a gstep-base compilation warning X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aeaf9159e3c5bcf45abf9591abe0f6b2790b7a0f;p=sope fixed a gstep-base compilation warning git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1450 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- diff --git a/xmlrpc_call/ChangeLog b/xmlrpc_call/ChangeLog index 893791dd..5f87ab60 100644 --- a/xmlrpc_call/ChangeLog +++ b/xmlrpc_call/ChangeLog @@ -1,3 +1,7 @@ +2007-03-05 Helge Hess + + * XmlRpcClientTool.m: fixed a gstep-base compilation warning + 2006-01-26 Marcus Mueller * xmlrpc_call.xcodeproj: added Xcode 2.2 project diff --git a/xmlrpc_call/XmlRpcClientTool.m b/xmlrpc_call/XmlRpcClientTool.m index 118125cb..d22711f1 100644 --- a/xmlrpc_call/XmlRpcClientTool.m +++ b/xmlrpc_call/XmlRpcClientTool.m @@ -97,7 +97,8 @@ uri = @"/RPC2"; #endif - self->client = [[HandleCredentialsClient alloc] initWithURL:url]; + self->client = [(HandleCredentialsClient *) + [HandleCredentialsClient alloc] initWithURL:url]; return YES; }