summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/Storage.h')
-rw-r--r--Swiften/Elements/Storage.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Swiften/Elements/Storage.h b/Swiften/Elements/Storage.h
index 447ca2e..a2f244c 100644
--- a/Swiften/Elements/Storage.h
+++ b/Swiften/Elements/Storage.h
@@ -9,7 +9,7 @@
#include <vector>
#include "Swiften/Elements/Payload.h"
-#include "Swiften/Base/String.h"
+#include <string>
#include "Swiften/JID/JID.h"
namespace Swift {
@@ -18,18 +18,18 @@ namespace Swift {
struct Room {
Room() : autoJoin(false) {}
- String name;
+ std::string name;
JID jid;
bool autoJoin;
- String nick;
- String password;
+ std::string nick;
+ std::string password;
};
struct URL {
URL() {}
- String name;
- String url;
+ std::string name;
+ std::string url;
};
Storage() {