diff --git a/headers/os/mail/E-mail.h b/headers/os/mail/E-mail.h index b985103f32..0112d88ac5 100644 --- a/headers/os/mail/E-mail.h +++ b/headers/os/mail/E-mail.h @@ -15,7 +15,7 @@ struct entry_ref; // E-Mail attributes #define B_MAIL_ATTR_NAME "MAIL:name" // indexed string -#define B_MAIL_ATTR_USERLABEL "MAIL:label" // indexed string +#define B_MAIL_ATTR_LABEL "MAIL:label" // indexed string #define B_MAIL_ATTR_STATUS "MAIL:status" // indexed string #define B_MAIL_ATTR_PRIORITY "MAIL:priority" // indexed string #define B_MAIL_ATTR_TO "MAIL:to" // indexed string diff --git a/src/bin/mail_utils/mbox2mail.cpp b/src/bin/mail_utils/mbox2mail.cpp index 64d29dff75..823a667fd3 100644 --- a/src/bin/mail_utils/mbox2mail.cpp +++ b/src/bin/mail_utils/mbox2mail.cpp @@ -48,7 +48,7 @@ typedef enum StandardHeaderEnum STD_HDR_REPLY, /* Things in the reply-to: field. */ STD_HDR_SUBJECT, /* The Subject: field. */ STD_HDR_PRIORITY, /* The Priority: and related fields, usually "Normal". */ - STD_HDR_USERLABEL, /* The user settable Label text attribute. */ + STD_HDR_LABEL, /* The user settable Label text attribute. */ STD_HDR_STATUS, /* The BeOS mail Read / New status text attribute. */ STD_HDR_THREAD, /* The subject simplified. */ STD_HDR_NAME, /* The From address simplified into a plain name. */ @@ -64,7 +64,7 @@ const char *g_StandardAttributeNames [STD_HDR_MAX] = B_MAIL_ATTR_REPLY, B_MAIL_ATTR_SUBJECT, B_MAIL_ATTR_PRIORITY, - B_MAIL_ATTR_USERLABEL, + B_MAIL_ATTR_LABEL, B_MAIL_ATTR_STATUS, B_MAIL_ATTR_THREAD, B_MAIL_ATTR_NAME