diff options
Diffstat (limited to 'Swiften/Queries/Request.h')
-rw-r--r-- | Swiften/Queries/Request.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Queries/Request.h b/Swiften/Queries/Request.h index 4ed8dc2..eee89e9 100644 --- a/Swiften/Queries/Request.h +++ b/Swiften/Queries/Request.h @@ -11,7 +11,7 @@ #include <boost/optional.hpp> #include <boost/enable_shared_from_this.hpp> -#include "Swiften/Base/String.h" +#include <string> #include "Swiften/Queries/IQHandler.h" #include "Swiften/Elements/IQ.h" #include "Swiften/Elements/Payload.h" @@ -66,7 +66,7 @@ namespace Swift { IQ::Type type_; JID receiver_; boost::shared_ptr<Payload> payload_; - String id_; + std::string id_; bool sent_; }; } |