diff options
Diffstat (limited to 'Swiften/Queries/Responders/SoftwareVersionResponder.h')
-rw-r--r-- | Swiften/Queries/Responders/SoftwareVersionResponder.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Swiften/Queries/Responders/SoftwareVersionResponder.h b/Swiften/Queries/Responders/SoftwareVersionResponder.h index 9da82b0..f6a3d52 100644 --- a/Swiften/Queries/Responders/SoftwareVersionResponder.h +++ b/Swiften/Queries/Responders/SoftwareVersionResponder.h @@ -16,13 +16,13 @@ namespace Swift { public: SoftwareVersionResponder(IQRouter* router); - void setVersion(const String& client, const String& version); + void setVersion(const std::string& client, const std::string& version); private: - virtual bool handleGetRequest(const JID& from, const JID& to, const String& id, boost::shared_ptr<SoftwareVersion> payload); + virtual bool handleGetRequest(const JID& from, const JID& to, const std::string& id, boost::shared_ptr<SoftwareVersion> payload); private: - String client; - String version; + std::string client; + std::string version; }; } |