2007-04-20 Murray Cumming <murrayc@murrayc.com>
authorMurray Cumming <murrayc@murrayc.com>
Fri, 20 Apr 2007 10:04:43 +0000 (10:04 +0000)
committerMurray Cumming <murrayc@murrayc.com>
Fri, 20 Apr 2007 10:04:43 +0000 (10:04 +0000)
* src/gnome/modest-msg-edit-window.c:
        (modest_msg_edit_window_set_priority_flags): Added an empty implementation to fix a
        linker error, to fix the build on the GNOME platform.
        modest_msg_edit_window_set_zoom(), modest_msg_edit_window_get_zoom(),
        modest_msg_edit_window_zoom_plus(), modest_msg_edit_window_zoom_minus():
        ifdefed out to avoid a warning.

pmo-trunk-r1608

ChangeLog2
src/gnome/modest-msg-edit-window.c

index 2a33a12..0252930 100644 (file)
@@ -1,5 +1,14 @@
 2007-04-20  Murray Cumming  <murrayc@murrayc.com>
 
+       * src/gnome/modest-msg-edit-window.c:
+       (modest_msg_edit_window_set_priority_flags): Added an empty implementation to fix a 
+       linker error, to fix the build on the GNOME platform.
+       modest_msg_edit_window_set_zoom(), modest_msg_edit_window_get_zoom(), 
+       modest_msg_edit_window_zoom_plus(), modest_msg_edit_window_zoom_minus():
+       ifdefed out to avoid a warning.
+
+2007-04-20  Murray Cumming  <murrayc@murrayc.com>
+
        * src/widgets/modest-header-view.c: (on_focus_in): Use GTK_CHECK_VERSION to #ifdef around the 
        use of gtk_tree_view_get_visible_range(), to fix the build on Mameo. This code probably needs 
        some alternative for GTK+ 2.6.
index 9c0e688..8f3e0a3 100644 (file)
@@ -507,6 +507,7 @@ modest_msg_edit_window_show_bcc (ModestMsgEditWindow *window,
        g_message ("not implemented yet %s", __FUNCTION__);
 }
 
+#if 0 /* Not used. */
 static void
 modest_msg_edit_window_set_zoom (ModestWindow *window,
                                 gdouble zoom)
@@ -574,3 +575,12 @@ modest_msg_edit_window_zoom_minus (GtkAction *action, ModestWindow *window)
                }
        }
 }
+#endif
+
+void
+modest_msg_edit_window_set_priority_flags (ModestMsgEditWindow *window,
+                                          TnyHeaderFlags priority_flags)
+{
+       /* TODO */
+}
+