From 7dd7dfede75f07aaee85edeee1375abaedc6bb53 Mon Sep 17 00:00:00 2001 From: mogemimi Date: Tue, 26 Jan 2016 05:10:47 +0900 Subject: [PATCH] Replace char* with std::string in HttpRequest --- cocos/network/HttpRequest.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cocos/network/HttpRequest.h b/cocos/network/HttpRequest.h index 1e13f9d1e6..c4255189da 100644 --- a/cocos/network/HttpRequest.h +++ b/cocos/network/HttpRequest.h @@ -142,9 +142,9 @@ public: * Set the url address of HttpRequest object. * The url value could be like these: "http://httpbin.org/ip" or "https://httpbin.org/get" * - * @param url the string pointer. + * @param url the string object. */ - inline void setUrl(const char* url) + inline void setUrl(const std::string& url) { _url = url; }; @@ -194,9 +194,9 @@ public: * Set a string tag to identify your request. * This tag can be found in HttpResponse->getHttpRequest->getTag(). * - * @param tag the string pointer + * @param tag the string object. */ - inline void setTag(const char* tag) + inline void setTag(const std::string& tag) { _tag = tag; };