# HG changeset patch # User Kevin Stange # Date 1317513900 0 # Node ID 32eef2c3314a986dc753eda613e1e0734e4e7b66 # Parent 3e2191125ad77b56b189e67e3dfd05eb88b461f0 disapproval of revision '8e7b47f18e014b8e786f6b8e24ecfe6182130ddc' diff -r 3e2191125ad7 -r 32eef2c3314a finch/gntconv.c --- a/finch/gntconv.c Sat Oct 01 13:49:37 2011 +0000 +++ b/finch/gntconv.c Sun Oct 02 00:05:00 2011 +0000 @@ -801,6 +801,9 @@ 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; diff -r 3e2191125ad7 -r 32eef2c3314a libpurple/conversation.h --- a/libpurple/conversation.h Sat Oct 01 13:49:37 2011 +0000 +++ b/libpurple/conversation.h Sun Oct 02 00:05:00 2011 +0000 @@ -53,6 +53,7 @@ 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; @@ -284,6 +285,8 @@ { PurpleConvIm *im; /**< IM-specific data. */ PurpleConvChat *chat; /**< Chat-specific data. */ + void *misc; /**< Misc. data. */ + } u; PurpleConversationUiOps *ui_ops; /**< UI-specific operations. */