diff src/conversation.h @ 6622:a4622f1fb5a1

[gaim-migrate @ 7146] (10:10:23) Robot101: kills off OPT_CONN_* in favour of an enum, and deprecates all the IM_FLAGS_* except IM_FLAG_AWAY which is made into GAIM_IM_AUTO_RESP in a GaimImFlags enum. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 25 Aug 2003 14:12:28 +0000
parents 42fdf16f1dad
children 41120df7ed94
line wrap: on
line diff
--- a/src/conversation.h	Mon Aug 25 02:49:42 2003 +0000
+++ b/src/conversation.h	Mon Aug 25 14:12:28 2003 +0000
@@ -102,14 +102,14 @@
  */
 typedef enum
 {
-	GAIM_MESSAGE_SEND = 0x01,      /**< Outgoing message.     */
-	GAIM_MESSAGE_RECV = 0x02,      /**< Incoming message.     */
-	GAIM_MESSAGE_SYSTEM = 0x04,    /**< System message.       */
-	GAIM_MESSAGE_AUTO_RESP = 0x08, /**< Auto response.        */
-	GAIM_MESSAGE_COLORIZE = 0x10,  /**< Colorize nicks.       */
-	GAIM_MESSAGE_NICK = 0x20,      /**< Contains your nick.   */
-	GAIM_MESSAGE_NO_LOG = 0x40,    /**< Do not log.           */
-	GAIM_MESSAGE_WHISPER = 0x80    /**< Whispered message.    */
+	GAIM_MESSAGE_SEND      = 0x0001, /**< Outgoing message.     */
+	GAIM_MESSAGE_RECV      = 0x0002, /**< Incoming message.     */
+	GAIM_MESSAGE_SYSTEM    = 0x0004, /**< System message.       */
+	GAIM_MESSAGE_AUTO_RESP = 0x0008, /**< Auto response.        */
+	GAIM_MESSAGE_COLORIZE  = 0x0010, /**< Colorize nicks.       */
+	GAIM_MESSAGE_NICK      = 0x0020, /**< Contains your nick.   */
+	GAIM_MESSAGE_NO_LOG    = 0x0040, /**< Do not log.           */
+	GAIM_MESSAGE_WHISPER   = 0x0080  /**< Whispered message.    */
 } GaimMessageFlags;
 
 #include "account.h"