~ubuntu-branches/ubuntu/precise/evolution/precise

« back to all changes in this revision

Viewing changes to libgnomecanvas/gnome-canvas-widget.c

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-09-08 09:38:57 UTC
  • mfrom: (1.1.84 upstream)
  • Revision ID: package-import@ubuntu.com-20110908093857-6lfl04ke2ns3kx2o
Tags: 3.1.91-0ubuntu1
* New upstream release. (LP: #843769)
* debian/control: bump e-d-s Build-Depends to 3.1.91. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
}
171
171
 
172
172
static void
173
 
do_destroy (gpointer data, GObject *gone_object)
 
173
do_destroy (gpointer data,
 
174
            GObject *gone_object)
174
175
{
175
176
        GnomeCanvasWidget *witem;
176
177
 
244
245
}
245
246
 
246
247
static void
247
 
gnome_canvas_widget_set_property (GObject            *object,
248
 
                                  guint               param_id,
249
 
                                  const GValue       *value,
250
 
                                  GParamSpec         *pspec)
 
248
gnome_canvas_widget_set_property (GObject *object,
 
249
                                  guint param_id,
 
250
                                  const GValue *value,
 
251
                                  GParamSpec *pspec)
251
252
{
252
253
        GnomeCanvasItem *item;
253
254
        GnomeCanvasWidget *witem;
336
337
}
337
338
 
338
339
static void
339
 
gnome_canvas_widget_get_property (GObject            *object,
340
 
                                  guint               param_id,
341
 
                                  GValue             *value,
342
 
                                  GParamSpec         *pspec)
 
340
gnome_canvas_widget_get_property (GObject *object,
 
341
                                  guint param_id,
 
342
                                  GValue *value,
 
343
                                  GParamSpec *pspec)
343
344
{
344
345
        GnomeCanvasWidget *witem;
345
346
 
406
407
 
407
408
static void
408
409
gnome_canvas_widget_draw (GnomeCanvasItem *item,
409
 
                          cairo_t *cr,
410
 
                          gint x, gint y,
411
 
                          gint width, gint height)
 
410
                          cairo_t *cr,
 
411
                          gint x,
 
412
                          gint y,
 
413
                          gint width,
 
414
                          gint height)
412
415
{
413
416
#if 0
414
417
        GnomeCanvasWidget *witem;
421
424
}
422
425
 
423
426
static GnomeCanvasItem *
424
 
gnome_canvas_widget_point (GnomeCanvasItem *item, gdouble x, gdouble y,
425
 
                           gint cx, gint cy)
 
427
gnome_canvas_widget_point (GnomeCanvasItem *item,
 
428
                           gdouble x,
 
429
                           gdouble y,
 
430
                           gint cx,
 
431
                           gint cy)
426
432
{
427
433
        GnomeCanvasWidget *witem;
428
434
        gdouble x1, y1, x2, y2;