Fixed inverted comments for constants.

This commit is contained in:
Vincent Richard 2013-06-09 19:31:10 +02:00
parent eddc33038f
commit abf7dec38b

View File

@ -217,10 +217,10 @@ namespace vmime
{ {
/** User implicitely displayed or deleted the message (filter or /** User implicitely displayed or deleted the message (filter or
* any other automatic action). */ * 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). */ /** 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). */ /** Constants for disposition sending modes (RFC-3798). */
@ -228,10 +228,10 @@ namespace vmime
{ {
/** The MDN was sent because the MUA had previously been configured /** The MDN was sent because the MUA had previously been configured
* to do so automatically. */ * 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. */ /** 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). */ /** Constants for disposition types (RFC-3798). */