diff src/conversation.h @ 11664:38bbb0f15453

[gaim-migrate @ 13949] "This patch updates the colors of the tabs correctly. I have removed the tab-highlighting stuff from the core to the UI." Sadrul Habib Chowdhury committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 14 Oct 2005 11:30:37 +0000
parents 9b3833da6840
children 04e0189bb519
line wrap: on
line diff
--- a/src/conversation.h	Fri Oct 14 10:53:32 2005 +0000
+++ b/src/conversation.h	Fri Oct 14 11:30:37 2005 +0000
@@ -52,18 +52,6 @@
 } GaimConversationType;
 
 /**
- * Unseen text states.
- */
-typedef enum
-{
-	GAIM_UNSEEN_NONE = 0,  /**< No unseen text in the conversation. */
-	GAIM_UNSEEN_TEXT,      /**< Unseen text in the conversation.    */
-	GAIM_UNSEEN_NICK,      /**< Unseen text and the nick was said.  */
-	GAIM_UNSEEN_EVENT      /**< Unseen events in the conversation.  */
-
-} GaimUnseenState;
-
-/**
  * Conversation update type.
  */
 typedef enum
@@ -246,8 +234,6 @@
 
 	GList *send_history;        /**< The send history.                  */
 
-	GaimUnseenState unseen;     /**< The unseen tab state.              */
-
 	union
 	{
 		GaimConvIm   *im;       /**< IM-specific data.                  */
@@ -397,24 +383,6 @@
 void gaim_conversation_autoset_title(GaimConversation *conv);
 
 /**
- * Sets the conversation's unseen state.
- *
- * @param conv  The conversation.
- * @param state The new unseen state.
- */
-void gaim_conversation_set_unseen(GaimConversation *conv,
-                                  GaimUnseenState state);
-
-/**
- * Returns the conversation's unseen state.
- *
- * @param conv The conversation.
- *
- * @return The conversation's unseen state.
- */
-GaimUnseenState gaim_conversation_get_unseen(const GaimConversation *conv);
-
-/**
  * Sets the specified conversation's name.
  *
  * @param conv The conversation.