From: Philip Van Hoof Date: Fri, 15 Jun 2007 12:47:11 +0000 (+0000) Subject: Small compilation warning fix X-Git-Tag: git_migration_finished~3260 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=65c16d69585d128a52408f9db57ab426a44f637c;ds=sidebyside Small compilation warning fix pmo-trunk-r2256 --- diff --git a/src/maemo/modest-msg-edit-window.c b/src/maemo/modest-msg-edit-window.c index 559d027..c405a77 100644 --- a/src/maemo/modest-msg-edit-window.c +++ b/src/maemo/modest-msg-edit-window.c @@ -1175,7 +1175,7 @@ modest_msg_edit_window_set_format_state (ModestMsgEditWindow *self, wp_text_buffer_set_attribute (WP_TEXT_BUFFER (priv->text_buffer), WPT_BOLD, (gpointer) (buffer_format->font)); } if (buffer_format->cs.bullet) { - wp_text_buffer_set_attribute (WP_TEXT_BUFFER (priv->text_buffer), WPT_BULLET, (gpointer) (buffer_format->bullet)); + wp_text_buffer_set_attribute (WP_TEXT_BUFFER (priv->text_buffer), WPT_BULLET, (gpointer) ((int)buffer_format->bullet)); } /* wp_text_buffer_set_format (WP_TEXT_BUFFER (priv->text_buffer), buffer_format); */ wp_text_buffer_thaw (WP_TEXT_BUFFER (priv->text_buffer));