Two really tiny fixes



Hi all,

two really small fixes, a missing macro, and a missing prototype.

Br.
Index: libtinymailui-gtk/tny-gtk-msg-view.c
===================================================================
--- libtinymailui-gtk/tny-gtk-msg-view.c	(revision 1421)
+++ libtinymailui-gtk/tny-gtk-msg-view.c	(working copy)
@@ -600,7 +600,7 @@
 {
 	TnyGtkMsgViewPriv *priv = TNY_GTK_MSG_VIEW_GET_PRIVATE (self);
 
-	tny_msg_view_clear (self);
+	tny_msg_view_clear (TNY_MSG_VIEW (self));
 
 	if (part)
 	{
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 1421)
+++ ChangeLog	(working copy)
@@ -1,3 +1,10 @@
+2007-01-17  Sergio Villar Senin <svillar igalia com>
+
+	* libtinymailui-gtk/tny-gtk-msg-view.c: added a missing macro in a
+	function call
+	* libtinymailui/tny-msg-view.c: added tny_msg_view_clear prototype to
+	the header file
+
 2007-01-16  Dirk-Jan C. Binnema <dirk-jan binnema nokia com>
 
 	* Added the MESSAGE_SIZE column to the TnyGtkHeaderListModel
Index: libtinymailui/tny-msg-view.h
===================================================================
--- libtinymailui/tny-msg-view.h	(revision 1421)
+++ libtinymailui/tny-msg-view.h	(working copy)
@@ -53,6 +53,7 @@
 
 TnyMsg* tny_msg_view_get_msg (TnyMsgView *self);
 void  tny_msg_view_set_msg (TnyMsgView *self, TnyMsg *msg);
+void  tny_msg_view_clear (TnyMsgView *self);
 void  tny_msg_view_set_unavailable (TnyMsgView *self);
 TnyMimePartView* tny_msg_view_create_mime_part_view_for (TnyMsgView *self, TnyMimePart *part);
 TnyMsgView* tny_msg_view_create_new_inline_viewer (TnyMsgView *self);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]