aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2011-09-29 17:59:34 +0800
committerMilan Crha <mcrha@redhat.com>2011-09-30 03:12:10 +0800
commit5ddad039926944120fa8f138f3a0039292d736de (patch)
tree44a20cb844b5152c3fd2a221422f7dbcc6d65cfa /widgets/misc
parent31a6477e702eb480c2cc18ebf1772f67b2b984d3 (diff)
downloadgsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar
gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar.gz
gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar.bz2
gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar.lz
gsoc2013-evolution-5ddad039926944120fa8f138f3a0039292d736de.tar.xz
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 'widgets/misc')
-rw-r--r--widgets/misc/e-url-entry.c2
-rw-r--r--widgets/misc/e-url-entry.h3
2 files changed, 0 insertions, 5 deletions
diff --git a/widgets/misc/e-url-entry.c b/widgets/misc/e-url-entry.c
index c4a174c0a6..c59cf0739c 100644
--- a/widgets/misc/e-url-entry.c
+++ b/widgets/misc/e-url-entry.c
@@ -118,8 +118,6 @@ mnemonic_activate (GtkWidget *widget,
return gtk_widget_mnemonic_activate (priv->entry, group_cycling);
}
-
-
GtkWidget *
e_url_entry_new (void)
{
diff --git a/widgets/misc/e-url-entry.h b/widgets/misc/e-url-entry.h
index 7b50f79f7a..119fe47b18 100644
--- a/widgets/misc/e-url-entry.h
+++ b/widgets/misc/e-url-entry.h
@@ -33,7 +33,6 @@ G_BEGIN_DECLS
#define E_IS_URL_ENTRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_URL_ENTRY))
#define E_IS_URL_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), E_TYPE_URL_ENTRY))
-
typedef struct _EUrlEntry EUrlEntry;
typedef struct _EUrlEntryPrivate EUrlEntryPrivate;
typedef struct _EUrlEntryClass EUrlEntryClass;
@@ -48,8 +47,6 @@ struct _EUrlEntryClass {
GtkHBoxClass parent_class;
};
-
-
GType e_url_entry_get_type (void);
GtkWidget *e_url_entry_new (void);
GtkWidget *e_url_entry_get_entry (EUrlEntry *url_entry);