aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-week-view.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-06-21 13:32:39 +0800
committerChris Lahey <clahey@src.gnome.org>2000-06-21 13:32:39 +0800
commit5df817c875f094ca6477e54cabb2c5cffffda5c5 (patch)
treed048b00784808a14ad4a3e1bd70b47737f91cc42 /calendar/gui/e-week-view.c
parentd9d0538de4325b1387d44f8f35d213e32cf37c15 (diff)
downloadgsoc2013-evolution-5df817c875f094ca6477e54cabb2c5cffffda5c5.tar
gsoc2013-evolution-5df817c875f094ca6477e54cabb2c5cffffda5c5.tar.gz
gsoc2013-evolution-5df817c875f094ca6477e54cabb2c5cffffda5c5.tar.bz2
gsoc2013-evolution-5df817c875f094ca6477e54cabb2c5cffffda5c5.tar.lz
gsoc2013-evolution-5df817c875f094ca6477e54cabb2c5cffffda5c5.tar.xz
gsoc2013-evolution-5df817c875f094ca6477e54cabb2c5cffffda5c5.tar.zst
gsoc2013-evolution-5df817c875f094ca6477e54cabb2c5cffffda5c5.zip
Remove the usage of the "x" and "y" arguments.
2000-06-21 Christopher James Lahey <clahey@helixcode.com> * gui/e-day-view.c, gui/e-week-view.c: Remove the usage of the "x" and "y" arguments. svn path=/trunk/; revision=3669
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r--calendar/gui/e-week-view.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c
index 45f209885b..2869847299 100644
--- a/calendar/gui/e-week-view.c
+++ b/calendar/gui/e-week-view.c
@@ -40,6 +40,7 @@
#include "popup-menu.h"
#include "../e-util/e-canvas.h"
#include "../widgets/e-text/e-text.h"
+#include "e-util/e-canvas-utils.h"
/* Images */
#include "bell.xpm"
@@ -2089,11 +2090,11 @@ e_week_view_reshape_event_span (EWeekView *week_view,
text_w = MAX (text_w, 0);
gnome_canvas_item_set (span->text_item,
- "x", (gdouble) text_x,
- "y", (gdouble) text_y,
"clip_width", (gdouble) text_w,
"clip_height", (gdouble) text_h,
NULL);
+ e_canvas_item_move_absolute(span->text_item,
+ text_x, text_y);
}