changeset 12132:95bffda9b762

[gaim-migrate @ 14432] I didn't like GAIM_UNSEEN_NOLOG being inconsistent with GAIM_MESSAGE_NO_LOG. It's now GAIM_UNSEEN_NO_LOG. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 18 Nov 2005 12:58:12 +0000
parents cb7ccb5048cf
children 8254bb99f929
files src/gtkconv.c src/gtkconv.h
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkconv.c	Fri Nov 18 12:52:29 2005 +0000
+++ b/src/gtkconv.c	Fri Nov 18 12:58:12 2005 +0000
@@ -4408,7 +4408,7 @@
 			  ((flags & GAIM_MESSAGE_ERROR) == GAIM_MESSAGE_ERROR))
 			unseen = GAIM_UNSEEN_EVENT;
 		else if ((flags & GAIM_MESSAGE_NO_LOG) == GAIM_MESSAGE_NO_LOG)
-			unseen = GAIM_UNSEEN_NOLOG;
+			unseen = GAIM_UNSEEN_NO_LOG;
 		else
 			unseen = GAIM_UNSEEN_TEXT;
 
--- a/src/gtkconv.h	Fri Nov 18 12:52:29 2005 +0000
+++ b/src/gtkconv.h	Fri Nov 18 12:58:12 2005 +0000
@@ -34,11 +34,11 @@
  */
 typedef enum
 {
-	GAIM_UNSEEN_NONE  = 0, /**< No unseen text in the conversation. */
-	GAIM_UNSEEN_EVENT = 1, /**< Unseen events in the conversation.  */
-	GAIM_UNSEEN_NOLOG = 2, /**< Unseen text with NO_LOG flag.       */
-	GAIM_UNSEEN_TEXT  = 3, /**< Unseen text in the conversation.    */
-	GAIM_UNSEEN_NICK  = 4  /**< Unseen text and the nick was said.  */
+	GAIM_UNSEEN_NONE,   /**< No unseen text in the conversation. */
+	GAIM_UNSEEN_EVENT,  /**< Unseen events in the conversation.  */
+	GAIM_UNSEEN_NO_LOG, /**< Unseen text with NO_LOG flag.       */
+	GAIM_UNSEEN_TEXT,   /**< Unseen text in the conversation.    */
+	GAIM_UNSEEN_NICK    /**< Unseen text and the nick was said.  */
 } GaimUnseenState;
 
 enum {