Use deprecated routine to prevent this code from crashing.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/branches/gnucash-gnome2-dev@9382 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2003-09-21 02:48:10 +00:00
parent 07ba678798
commit 102eaee9d5

View File

@@ -314,12 +314,14 @@ gnc_dense_cal_init (GncDenseCal *dcal)
gint i;
gint maxWidth, maxHeight, maxAscent, maxLBearing;
gint lbearing, rbearing, width, ascent, descent;
GtkStyle *style;
dcal->monthLabelFont = gdk_font_load( LABEL_FONT_NAME );
g_assert( dcal->monthLabelFont );
/* FIXME GNOME 2 port (rework the complete font code) */
/* dcal->dayLabelFont = GTK_WIDGET(dcal)->style->font; */
style = gtk_widget_get_style(GTK_WIDGET(dcal));
dcal->dayLabelFont = gtk_style_get_font(style);
gdk_font_ref( dcal->dayLabelFont );
g_assert( dcal->dayLabelFont );
@@ -376,7 +378,6 @@ gnc_dense_cal_init (GncDenseCal *dcal)
/ 3.0 ),
gdk_string_height( dcal->dayLabelFont, "88" ) + 2 );
dcal->dayLabelHeight = gdk_string_height( dcal->monthLabelFont, "88" );
dcal->initialized = TRUE;
}