pidgin: 8e7b47f1: PURPLE_CONV_TYPE_MISC never actually use...
andrew.victor at mxit.com
andrew.victor at mxit.com
Sat Oct 1 09:55:54 EDT 2011
----------------------------------------------------------------------
Revision: 8e7b47f18e014b8e786f6b8e24ecfe6182130ddc
Parent: ce554d1de6a712cc7aa7ff15a348c2711071d04f
Author: andrew.victor at mxit.com
Date: 10/01/11 09:49:37
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/8e7b47f18e014b8e786f6b8e24ecfe6182130ddc
Changelog:
PURPLE_CONV_TYPE_MISC never actually used.
Changes against parent ce554d1de6a712cc7aa7ff15a348c2711071d04f
patched finch/gntconv.c
patched libpurple/conversation.h
-------------- next part --------------
============================================================
--- libpurple/conversation.h 44e5eee5936d9cf44746b6a4db49494d550f7aa7
+++ libpurple/conversation.h 59d38f2c8ee471651d4f8e9f3508ef68d7308b6d
@@ -53,7 +53,6 @@ typedef enum
PURPLE_CONV_TYPE_UNKNOWN = 0, /**< Unknown conversation type. */
PURPLE_CONV_TYPE_IM, /**< Instant Message. */
PURPLE_CONV_TYPE_CHAT, /**< Chat room. */
- PURPLE_CONV_TYPE_MISC, /**< A misc. conversation. */
PURPLE_CONV_TYPE_ANY /**< Any type of conversation. */
} PurpleConversationType;
@@ -285,8 +284,6 @@ struct _PurpleConversation
{
PurpleConvIm *im; /**< IM-specific data. */
PurpleConvChat *chat; /**< Chat-specific data. */
- void *misc; /**< Misc. data. */
-
} u;
PurpleConversationUiOps *ui_ops; /**< UI-specific operations. */
============================================================
--- finch/gntconv.c 98aff9b4030d0024b30284b7234049f7d135a8b3
+++ finch/gntconv.c bad80370fed25297fd93ba4b95447906c61dd93e
@@ -801,9 +801,6 @@ finch_create_conversation(PurpleConversa
case PURPLE_CONV_TYPE_CHAT:
gnt_widget_set_name(ggc->window, "conversation-window-chat" );
break;
- case PURPLE_CONV_TYPE_MISC:
- gnt_widget_set_name(ggc->window, "conversation-window-misc" );
- break;
case PURPLE_CONV_TYPE_ANY:
gnt_widget_set_name(ggc->window, "conversation-window-any" );
break;
More information about the Commits
mailing list