From 4c6b9f88fe7647d7048090909d432a36f5d151d4 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Fri, 20 Feb 2026 17:19:26 +0100 Subject: [PATCH] Email: Rename USERLABEL -> LABEL Missed in hrev59388. Sorry about that... Change-Id: I3cf7bbe2d93ac4f420d6f37c243d8bea056372d9 Reviewed-on: https://review.haiku-os.org/c/haiku/+/10348 Reviewed-by: humdinger humdinger --- headers/os/mail/E-mail.h | 2 +- src/bin/mail_utils/mbox2mail.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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