summaryrefslogtreecommitdiffstats
path: root/src/Client/PasswordReader.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-27 19:58:24 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-27 19:58:24 +0200
commitb40ba0cf91603b695f1f2380cbd39966a458f22f (patch)
tree1fec48ddc59eb1392fac38495b230e4b2cbf7528 /src/Client/PasswordReader.h
parente1d8490f0654a3da0b900407d80d91d8d0da68c8 (diff)
downloadmad-b40ba0cf91603b695f1f2380cbd39966a458f22f.tar
mad-b40ba0cf91603b695f1f2380cbd39966a458f22f.zip
Use Unicode-aware String class instead of std::string
Diffstat (limited to 'src/Client/PasswordReader.h')
-rw-r--r--src/Client/PasswordReader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Client/PasswordReader.h b/src/Client/PasswordReader.h
index 35487c4..d96c9c1 100644
--- a/src/Client/PasswordReader.h
+++ b/src/Client/PasswordReader.h
@@ -22,7 +22,7 @@
#include "export.h"
-#include <string>
+#include <Core/String.h>
namespace Mad {
namespace Client {
@@ -32,10 +32,10 @@ class MAD_CLIENT_EXPORT PasswordReader {
PasswordReader();
public:
- static std::string readPassword(const std::string &prompt);
+ static Core::String readPassword(const Core::String &prompt);
};
}
}
-#endif /* MAD_CLIENT_PASSWORDREADER_H_ */ \ No newline at end of file
+#endif /* MAD_CLIENT_PASSWORDREADER_H_ */