aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-08-11 12:33:06 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-08-11 12:33:06 +0800
commit340b547a812fccaa0b7f57511eef820b74d07a55 (patch)
tree359c044bf80475cff278cd64ea335ba1977474fb
parentf0d0f623bb846a91786aa77db4558ec299b0ce56 (diff)
downloadgsoc2013-evolution-340b547a812fccaa0b7f57511eef820b74d07a55.tar
gsoc2013-evolution-340b547a812fccaa0b7f57511eef820b74d07a55.tar.gz
gsoc2013-evolution-340b547a812fccaa0b7f57511eef820b74d07a55.tar.bz2
gsoc2013-evolution-340b547a812fccaa0b7f57511eef820b74d07a55.tar.lz
gsoc2013-evolution-340b547a812fccaa0b7f57511eef820b74d07a55.tar.xz
gsoc2013-evolution-340b547a812fccaa0b7f57511eef820b74d07a55.tar.zst
gsoc2013-evolution-340b547a812fccaa0b7f57511eef820b74d07a55.zip
Fix small cut&paste bug - Federico
svn path=/trunk/; revision=309
-rw-r--r--calendar/gnome-month-item.c2
-rw-r--r--calendar/gui/gnome-month-item.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gnome-month-item.c b/calendar/gnome-month-item.c
index 0a9227b325..83e34ff1c7 100644
--- a/calendar/gnome-month-item.c
+++ b/calendar/gnome-month-item.c
@@ -249,7 +249,7 @@ set_day_names (GnomeMonthItem *mitem)
int i;
for (i = 0; i < 7; i++)
- gnome_canvas_item_set (mitem->items[ITEM_HEAD_LABEL + get_day_index (mitem, i)],
+ gnome_canvas_item_set (mitem->items[ITEM_HEAD_LABEL + i],
"text", mitem->day_names[get_day_index (mitem, i)],
NULL);
}
diff --git a/calendar/gui/gnome-month-item.c b/calendar/gui/gnome-month-item.c
index 0a9227b325..83e34ff1c7 100644
--- a/calendar/gui/gnome-month-item.c
+++ b/calendar/gui/gnome-month-item.c
@@ -249,7 +249,7 @@ set_day_names (GnomeMonthItem *mitem)
int i;
for (i = 0; i < 7; i++)
- gnome_canvas_item_set (mitem->items[ITEM_HEAD_LABEL + get_day_index (mitem, i)],
+ gnome_canvas_item_set (mitem->items[ITEM_HEAD_LABEL + i],
"text", mitem->day_names[get_day_index (mitem, i)],
NULL);
}