diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2011-09-29 17:59:34 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-09-30 03:12:10 +0800 |
commit | 5ddad039926944120fa8f138f3a0039292d736de (patch) | |
tree | 44a20cb844b5152c3fd2a221422f7dbcc6d65cfa /libgnomecanvas | |
parent | 31a6477e702eb480c2cc18ebf1772f67b2b984d3 (diff) | |
download | gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar.gz gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar.zst gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.zip |
Remove Ctrl + l () character from source files
From ccc980da1fd84ebfca25cf8caf9a5d62333099fc Mon Sep 17 00:00:00 2001
From: Paul Menzel <paulepanter@users.sourceforge.net>
Date: Wed, 28 Sep 2011 10:18:18 +0200
Subject: [PATCH] Remove Ctrl + l () character from source files
The following commits
git show aac3f2c8
git show 1510304c
git show 13cabd9e
git show 350a7a33
git show 9b7cc54d
git show e6972011
git show 1d3a7938
git show 934524b9
git show b2954936
git show a7f677b5
git show 4369c400
git show d509f47a
git show a6d5818f
git show c3876df7
git show 4583098b
git show 2831ada5
git show 4e1bce59
git show 1609f699
git show 4e4c1676
git show d6fade43
among others(?) introduced several occurrences of Ctrl + l (). Probably this was caused by the used editor.
These control characters can be searched for using the following command [1].
$ git grep ^L
[1] http://unstableme.blogspot.com/2009/10/grep-and-print-control-characters-in.html
Diffstat (limited to 'libgnomecanvas')
-rw-r--r-- | libgnomecanvas/gnome-canvas-pixbuf.c | 13 | ||||
-rw-r--r-- | libgnomecanvas/gnome-canvas-pixbuf.h | 4 | ||||
-rw-r--r-- | libgnomecanvas/gnome-canvas-text.c | 3 |
3 files changed, 0 insertions, 20 deletions
diff --git a/libgnomecanvas/gnome-canvas-pixbuf.c b/libgnomecanvas/gnome-canvas-pixbuf.c index 091db2a72a..71c7d95906 100644 --- a/libgnomecanvas/gnome-canvas-pixbuf.c +++ b/libgnomecanvas/gnome-canvas-pixbuf.c @@ -67,7 +67,6 @@ static void gnome_canvas_pixbuf_bounds (GnomeCanvasItem *item, G_DEFINE_TYPE (GnomeCanvasPixbuf, gnome_canvas_pixbuf, GNOME_TYPE_CANVAS_ITEM) - /* Class initialization function for the pixbuf canvas item */ static void @@ -128,8 +127,6 @@ gnome_canvas_pixbuf_dispose (GnomeCanvasItem *object) GNOME_CANVAS_ITEM_CLASS (gnome_canvas_pixbuf_parent_class)->dispose (object); } - - /* Set_property handler for the pixbuf canvas item */ static void gnome_canvas_pixbuf_set_property (GObject *object, @@ -195,8 +192,6 @@ gnome_canvas_pixbuf_get_property (GObject *object, } } - - /* Bounds and utilities */ /* Recomputes the bounding box of a pixbuf canvas item. The horizontal and @@ -233,8 +228,6 @@ recompute_bounding_box (GnomeCanvasPixbuf *gcp) item->y2 = ceil (y2); } - - /* Update sequence */ /* Update handler for the pixbuf canvas item */ @@ -259,8 +252,6 @@ gnome_canvas_pixbuf_update (GnomeCanvasItem *item, item->canvas, item->x1, item->y1, item->x2, item->y2); } - - /* Draw handler for the pixbuf canvas item */ static void gnome_canvas_pixbuf_draw (GnomeCanvasItem *item, @@ -290,8 +281,6 @@ gnome_canvas_pixbuf_draw (GnomeCanvasItem *item, cairo_restore (cr); } - - /* Point handler for the pixbuf canvas item */ static GnomeCanvasItem * gnome_canvas_pixbuf_point (GnomeCanvasItem *item, @@ -333,8 +322,6 @@ gnome_canvas_pixbuf_point (GnomeCanvasItem *item, return item; } - - /* Bounds handler for the pixbuf canvas item */ static void gnome_canvas_pixbuf_bounds (GnomeCanvasItem *item, diff --git a/libgnomecanvas/gnome-canvas-pixbuf.h b/libgnomecanvas/gnome-canvas-pixbuf.h index 3c4141da72..3fe4980691 100644 --- a/libgnomecanvas/gnome-canvas-pixbuf.h +++ b/libgnomecanvas/gnome-canvas-pixbuf.h @@ -27,8 +27,6 @@ G_BEGIN_DECLS - - #define GNOME_TYPE_CANVAS_PIXBUF (gnome_canvas_pixbuf_get_type ()) #define GNOME_CANVAS_PIXBUF(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNOME_TYPE_CANVAS_PIXBUF, GnomeCanvasPixbuf)) #define GNOME_CANVAS_PIXBUF_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GNOME_TYPE_CANVAS_PIXBUF, GnomeCanvasPixbufClass)) @@ -53,8 +51,6 @@ struct _GnomeCanvasPixbufClass { GType gnome_canvas_pixbuf_get_type (void) G_GNUC_CONST; - - G_END_DECLS #endif diff --git a/libgnomecanvas/gnome-canvas-text.c b/libgnomecanvas/gnome-canvas-text.c index 70b7142ac0..8f921a0d3c 100644 --- a/libgnomecanvas/gnome-canvas-text.c +++ b/libgnomecanvas/gnome-canvas-text.c @@ -46,7 +46,6 @@ #include "gnome-canvas-util.h" #include "gnome-canvas-i18n.h" - /* Object argument IDs */ enum { @@ -135,8 +134,6 @@ static void add_attr (PangoAttrList *attr_list, static GnomeCanvasItemClass *parent_class; - - /** * gnome_canvas_text_get_type: * @void: |