diff options
author | Miguel de Icaza <miguel@gnu.org> | 1999-07-17 03:42:30 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-07-17 03:42:30 +0800 |
commit | 986ec88206b8b4c04fb7d6be3dd644096a8884dc (patch) | |
tree | b686e7a820ea6f2def937162662bbfa9b8011f76 /calendar/gui/gnome-month-item.c | |
parent | e1c1c85819bbfb3f0fc6cfaf52e88d1dae6441ee (diff) | |
download | gsoc2013-evolution-986ec88206b8b4c04fb7d6be3dd644096a8884dc.tar gsoc2013-evolution-986ec88206b8b4c04fb7d6be3dd644096a8884dc.tar.gz gsoc2013-evolution-986ec88206b8b4c04fb7d6be3dd644096a8884dc.tar.bz2 gsoc2013-evolution-986ec88206b8b4c04fb7d6be3dd644096a8884dc.tar.lz gsoc2013-evolution-986ec88206b8b4c04fb7d6be3dd644096a8884dc.tar.xz gsoc2013-evolution-986ec88206b8b4c04fb7d6be3dd644096a8884dc.tar.zst gsoc2013-evolution-986ec88206b8b4c04fb7d6be3dd644096a8884dc.zip |
Merge fix from gnome-pim-1-0: Fixed cut&paste bug for day fontsets.
1999-07-16 Miguel de Icaza <miguel@gnu.org>
* gnome-month-item.c (gnome_month_item_set_arg): Merge fix from
gnome-pim-1-0: Fixed cut&paste bug for day fontsets.
svn path=/trunk/; revision=1028
Diffstat (limited to 'calendar/gui/gnome-month-item.c')
-rw-r--r-- | calendar/gui/gnome-month-item.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/gnome-month-item.c b/calendar/gui/gnome-month-item.c index ec799112de..4b8a9d75ac 100644 --- a/calendar/gui/gnome-month-item.c +++ b/calendar/gui/gnome-month-item.c @@ -1020,7 +1020,7 @@ gnome_month_item_set_arg (GtkObject *object, GtkArg *arg, guint arg_id) case ARG_DAY_FONTSET: gdk_font_unref (mitem->day_font); - mitem->head_font = gdk_fontset_load (GTK_VALUE_STRING (*arg)); + mitem->day_font = gdk_fontset_load (GTK_VALUE_STRING (*arg)); if (!mitem->day_font) { mitem->day_font = gdk_fontset_load ("-*-fixed-medium-r-semicondensed--13-120-75-75-c-60-*-*"); |