diff options
author | Vincent Richard <[email protected]> | 2013-01-15 12:21:10 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-01-15 12:21:10 +0000 |
commit | ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c (patch) | |
tree | 39536da12a50881850f98c81a8f3ac7838954e2c /src/net/pop3/POP3ServiceInfos.cpp | |
parent | Better test for stream state. (diff) | |
download | vmime-ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c.tar.gz vmime-ea06bc1de1f1844d5b7a66aa9e4bbcbc45be586c.zip |
Renamed TYPE_BOOL to avoid name collision on MacOS.
Diffstat (limited to 'src/net/pop3/POP3ServiceInfos.cpp')
-rw-r--r-- | src/net/pop3/POP3ServiceInfos.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/pop3/POP3ServiceInfos.cpp b/src/net/pop3/POP3ServiceInfos.cpp index 1eb618b5..4760d4f2 100644 --- a/src/net/pop3/POP3ServiceInfos.cpp +++ b/src/net/pop3/POP3ServiceInfos.cpp @@ -55,11 +55,11 @@ const POP3ServiceInfos::props& POP3ServiceInfos::getProperties() const static props pop3Props = { // POP3-specific options - property("options.apop", serviceInfos::property::TYPE_BOOL, "true"), - property("options.apop.fallback", serviceInfos::property::TYPE_BOOL, "true"), + property("options.apop", serviceInfos::property::TYPE_BOOLEAN, "true"), + property("options.apop.fallback", serviceInfos::property::TYPE_BOOLEAN, "true"), #if VMIME_HAVE_SASL_SUPPORT - property("options.sasl", serviceInfos::property::TYPE_BOOL, "true"), - property("options.sasl.fallback", serviceInfos::property::TYPE_BOOL, "true"), + property("options.sasl", serviceInfos::property::TYPE_BOOLEAN, "true"), + property("options.sasl.fallback", serviceInfos::property::TYPE_BOOLEAN, "true"), #endif // VMIME_HAVE_SASL_SUPPORT // Common properties @@ -78,11 +78,11 @@ const POP3ServiceInfos::props& POP3ServiceInfos::getProperties() const static props pop3sProps = { // POP3-specific options - property("options.apop", serviceInfos::property::TYPE_BOOL, "true"), - property("options.apop.fallback", serviceInfos::property::TYPE_BOOL, "true"), + property("options.apop", serviceInfos::property::TYPE_BOOLEAN, "true"), + property("options.apop.fallback", serviceInfos::property::TYPE_BOOLEAN, "true"), #if VMIME_HAVE_SASL_SUPPORT - property("options.sasl", serviceInfos::property::TYPE_BOOL, "true"), - property("options.sasl.fallback", serviceInfos::property::TYPE_BOOL, "true"), + property("options.sasl", serviceInfos::property::TYPE_BOOLEAN, "true"), + property("options.sasl.fallback", serviceInfos::property::TYPE_BOOLEAN, "true"), #endif // VMIME_HAVE_SASL_SUPPORT // Common properties |