diff options
author | Vincent Richard <[email protected]> | 2013-06-09 17:31:10 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-06-09 17:31:10 +0000 |
commit | abf7dec38b3764a2489678e31d8288a47eefe369 (patch) | |
tree | cad5ff680d9948aabde2639c084e3d1d4a141c33 | |
parent | Charset conversion output stream for ICU. (diff) | |
download | vmime-abf7dec38b3764a2489678e31d8288a47eefe369.tar.gz vmime-abf7dec38b3764a2489678e31d8288a47eefe369.zip |
Fixed inverted comments for constants.
-rw-r--r-- | vmime/constants.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vmime/constants.hpp b/vmime/constants.hpp index 7f7d7bf5..335f5e0c 100644 --- a/vmime/constants.hpp +++ b/vmime/constants.hpp @@ -217,10 +217,10 @@ namespace vmime { /** User implicitely displayed or deleted the message (filter or * any other automatic action). */ - extern const string::value_type* const MANUAL VMIME_EXPORT; + extern const string::value_type* const AUTOMATIC VMIME_EXPORT; /** User explicitely displayed or deleted the message (manual action). */ - extern const string::value_type* const AUTOMATIC VMIME_EXPORT; + extern const string::value_type* const MANUAL VMIME_EXPORT; } /** Constants for disposition sending modes (RFC-3798). */ @@ -228,10 +228,10 @@ namespace vmime { /** The MDN was sent because the MUA had previously been configured * to do so automatically. */ - extern const string::value_type* const SENT_MANUALLY VMIME_EXPORT; + extern const string::value_type* const SENT_AUTOMATICALLY VMIME_EXPORT; /** User explicitly gave permission for this particular MDN to be sent. */ - extern const string::value_type* const SENT_AUTOMATICALLY VMIME_EXPORT; + extern const string::value_type* const SENT_MANUALLY VMIME_EXPORT; } /** Constants for disposition types (RFC-3798). */ |