From 9663037f6c0daaf03d74c88afb002a6bb33f222b Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Wed, 17 Nov 1999 15:35:43 +0000 Subject: More work: - Fixed some Camel API naming issues. - Moved the message composer stuff to the `composer' directory. svn path=/trunk/; revision=1395 --- camel/camel-mime-message.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'camel/camel-mime-message.h') diff --git a/camel/camel-mime-message.h b/camel/camel-mime-message.h index 4b5bf39b25..e233f99899 100644 --- a/camel/camel-mime-message.h +++ b/camel/camel-mime-message.h @@ -43,15 +43,15 @@ typedef struct _CamelMimeMessage CamelMimeMessage; #include "camel-recipient.h" -#define RECIPIENT_TYPE_TO "To" -#define RECIPIENT_TYPE_CC "Cc" -#define RECIPIENT_TYPE_BCC "Bcc" +#define CAMEL_RECIPIENT_TYPE_TO "To" +#define CAMEL_RECIPIENT_TYPE_CC "Cc" +#define CAMEL_RECIPIENT_TYPE_BCC "Bcc" #define CAMEL_MIME_MESSAGE_TYPE (camel_mime_message_get_type ()) #define CAMEL_MIME_MESSAGE(obj) (GTK_CHECK_CAST((obj), CAMEL_MIME_MESSAGE_TYPE, CamelMimeMessage)) #define CAMEL_MIME_MESSAGE_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), CAMEL_MIME_MESSAGE_TYPE, CamelMimeMessageClass)) -#define IS_CAMEL_MIME_MESSAGE(o) (GTK_CHECK_TYPE((o), CAMEL_MIME_MESSAGE_TYPE)) +#define CAMEL_IS_MIME_MESSAGE(o) (GTK_CHECK_TYPE((o), CAMEL_MIME_MESSAGE_TYPE)) -- cgit