summaryrefslogtreecommitdiffstats
path: root/src/Common/Requests/IdentifyRequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Requests/IdentifyRequest.h')
-rw-r--r--src/Common/Requests/IdentifyRequest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Common/Requests/IdentifyRequest.h b/src/Common/Requests/IdentifyRequest.h
index 51b24dd..b0e9669 100644
--- a/src/Common/Requests/IdentifyRequest.h
+++ b/src/Common/Requests/IdentifyRequest.h
@@ -32,13 +32,13 @@ namespace Requests {
class MAD_COMMON_EXPORT IdentifyRequest : public Common::Request {
private:
- std::string hostname;
+ Core::String hostname;
protected:
virtual void sendRequest();
public:
- IdentifyRequest(Application *application, const std::string &hostname0) : Request(application), hostname(hostname0) {}
+ IdentifyRequest(Application *application, const Core::String &hostname0) : Request(application), hostname(hostname0) {}
};
}