diff options
author | Adam <Adam@drink-coca-cola.info> | 2010-05-11 14:36:53 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 21:01:17 -0400 |
commit | e6263dba84b80f03d02c379ace081e602f8ef199 (patch) | |
tree | a6d055b24245e47b1f6c4973c4502937ecabd751 /include/mail.h | |
parent | 631d11d6a81e8c5f63a19fc279606a61ab1a0563 (diff) |
Allow attaching metadata to nickrequests and storing it in the databases and fixed windows build
Diffstat (limited to 'include/mail.h')
-rw-r--r-- | include/mail.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mail.h b/include/mail.h index d64e36f30..5fe25ab08 100644 --- a/include/mail.h +++ b/include/mail.h @@ -7,10 +7,10 @@ extern CoreExport bool MailValidate(const std::string &email); class MailThread : public Thread { private: - const std::string MailTo; - const std::string Addr; - const std::string Subject; - const std::string Message; + std::string MailTo; + std::string Addr; + std::string Subject; + std::string Message; bool Success; public: |