* Fix some detected memory leaks
[modest] / src / gnome / modest-msg-edit-window.c
index 62d56a0..7a7a6ed 100644 (file)
@@ -153,7 +153,7 @@ get_transports (void)
        GSList *cursor, *accounts;
        
        account_mgr = modest_runtime_get_account_mgr();
-       cursor = accounts = modest_account_mgr_account_names (account_mgr);
+       cursor = accounts = modest_account_mgr_account_names (account_mgr, TRUE);
        while (cursor) {
                gchar *account_name = (gchar*)cursor->data;
                gchar *from_string  = modest_account_mgr_get_from_string (account_mgr,
@@ -475,6 +475,23 @@ modest_msg_edit_window_select_color (ModestMsgEditWindow *window)
 }
 
 void
+modest_msg_edit_window_select_file_format (ModestMsgEditWindow *window,
+                                          gint file_format)
+{
+       g_return_if_fail (MODEST_MSG_EDIT_WINDOW (window));
+
+       g_message ("Select file format operation is not supported");
+}
+
+void
+modest_msg_edit_window_select_font (ModestMsgEditWindow *window)
+{
+       g_return_if_fail (MODEST_MSG_EDIT_WINDOW (window));
+
+       g_message ("Select font operation is not supported");
+}
+
+void
 modest_msg_edit_window_select_background_color (ModestMsgEditWindow *window)
 {
        g_return_if_fail (MODEST_MSG_EDIT_WINDOW (window));
@@ -489,3 +506,69 @@ modest_msg_edit_window_insert_image (ModestMsgEditWindow *window)
 
        g_message ("Insert image operation is not supported");
 }
+
+void
+modest_msg_edit_window_show_cc (ModestMsgEditWindow *window, 
+                               gboolean show)
+{
+       g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
+
+       g_message ("not implemented yet %s", __FUNCTION__);
+}
+void
+modest_msg_edit_window_show_bcc (ModestMsgEditWindow *window, 
+                               gboolean show)
+{
+       g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
+
+       g_message ("not implemented yet %s", __FUNCTION__);
+}
+void
+modest_msg_edit_window_undo (ModestMsgEditWindow *window)
+{
+       g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
+      
+       g_message ("not implemented yet %s", __FUNCTION__);
+}
+void
+modest_msg_edit_window_toggle_fullscreen (ModestMsgEditWindow *window)
+{
+       g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
+      
+       g_message ("not implemented yet %s", __FUNCTION__);
+}
+void
+modest_msg_edit_window_set_priority_flags (ModestMsgEditWindow *window,
+                                          TnyHeaderFlags priority_flags)
+{
+       g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
+      
+       g_message ("not implemented yet %s", __FUNCTION__);
+}
+
+
+void
+modest_msg_edit_window_select_contacts (ModestMsgEditWindow *window)
+{
+       g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
+
+       g_message ("not implemented yet %s", __FUNCTION__);
+}
+
+gboolean
+modest_msg_edit_window_check_names (ModestMsgEditWindow *window)
+{
+       g_return_val_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window), FALSE);
+
+       g_message ("not implemented yet %s", __FUNCTION__);
+       return TRUE;
+}
+
+void
+modest_msg_edit_window_set_file_format (ModestMsgEditWindow *window,
+                                       gint file_format)
+{
+       g_return_if_fail (MODEST_IS_MSG_EDIT_WINDOW (window));
+
+       g_message ("not implemented yet %s", __FUNCTION__);
+}