diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-14 09:36:29 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-14 09:36:29 +0800 |
commit | 03c8d705be1831d41152591d2c5a68a533d6df99 (patch) | |
tree | 55710756475c44e63e84f9b70b933dd932063e16 /executive-summary | |
parent | d4c75eb010770a63aaef93d6c525df5443f673af (diff) | |
download | gsoc2013-evolution-03c8d705be1831d41152591d2c5a68a533d6df99.tar gsoc2013-evolution-03c8d705be1831d41152591d2c5a68a533d6df99.tar.gz gsoc2013-evolution-03c8d705be1831d41152591d2c5a68a533d6df99.tar.bz2 gsoc2013-evolution-03c8d705be1831d41152591d2c5a68a533d6df99.tar.lz gsoc2013-evolution-03c8d705be1831d41152591d2c5a68a533d6df99.tar.xz gsoc2013-evolution-03c8d705be1831d41152591d2c5a68a533d6df99.tar.zst gsoc2013-evolution-03c8d705be1831d41152591d2c5a68a533d6df99.zip |
Added a cast.
2000-12-13 Christopher James Lahey <clahey@helixcode.com>
* component/e-summary-callbacks.c (configure_summary): Added a
cast.
svn path=/trunk/; revision=6984
Diffstat (limited to 'executive-summary')
-rw-r--r-- | executive-summary/ChangeLog | 5 | ||||
-rw-r--r-- | executive-summary/component/e-summary-callbacks.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/executive-summary/ChangeLog b/executive-summary/ChangeLog index 1af8f7e605..24e69d56c0 100644 --- a/executive-summary/ChangeLog +++ b/executive-summary/ChangeLog @@ -1,3 +1,8 @@ +2000-12-13 Christopher James Lahey <clahey@helixcode.com> + + * component/e-summary-callbacks.c (configure_summary): Added a + cast. + 2000-12-13 Iain Holmes <iain@helixcode.com> * component/e-summary.c (e_summary_rebuild_page): Display all the windows diff --git a/executive-summary/component/e-summary-callbacks.c b/executive-summary/component/e-summary-callbacks.c index 7343726865..383fe47bc0 100644 --- a/executive-summary/component/e-summary-callbacks.c +++ b/executive-summary/component/e-summary-callbacks.c @@ -263,7 +263,7 @@ configure_summary (GtkWidget *widget, vbox = glade_xml_get_widget (data->xml, "vbox"); html = html_new (TRUE); - put_html (html, + put_html (GTK_HTML(html), _("You can select a different HTML page for the background " "of the Executive Summary.\n\nJust leave it blank for the " "default")); |