summaryrefslogtreecommitdiffstats
path: root/src/Client/Requests/UserLists/UserListDownloadRequest.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Client/Requests/UserLists/UserListDownloadRequest.h')
-rw-r--r--src/Client/Requests/UserLists/UserListDownloadRequest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Client/Requests/UserLists/UserListDownloadRequest.h b/src/Client/Requests/UserLists/UserListDownloadRequest.h
index 570899f..13536f8 100644
--- a/src/Client/Requests/UserLists/UserListDownloadRequest.h
+++ b/src/Client/Requests/UserLists/UserListDownloadRequest.h
@@ -29,13 +29,13 @@ namespace UserLists {
class UserListDownloadRequest : public Common::Request {
private:
- std::string name;
+ Core::String name;
protected:
virtual void sendRequest();
public:
- UserListDownloadRequest(Common::Application *application, const std::string &name0)
+ UserListDownloadRequest(Common::Application *application, const Core::String &name0)
: Common::Request(application), name(name0) {}
};