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 /calendar/gui/alarm-notify | |
parent | 31a6477e702eb480c2cc18ebf1772f67b2b984d3 (diff) | |
download | gsoc2013-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 'calendar/gui/alarm-notify')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 1 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/alarm.c | 5 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/alarm.h | 3 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/config-data.c | 2 |
4 files changed, 0 insertions, 11 deletions
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index d7a1346a8e..8a4ae2face 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -970,7 +970,6 @@ query_objects_removed_cb (ECalClientView *view, message_push ((Message *) msg); } - /* Notification functions */ diff --git a/calendar/gui/alarm-notify/alarm.c b/calendar/gui/alarm-notify/alarm.c index 968eb95959..a05498532b 100644 --- a/calendar/gui/alarm-notify/alarm.c +++ b/calendar/gui/alarm-notify/alarm.c @@ -36,7 +36,6 @@ #include "alarm.h" #include "config-data.h" - /* Our glib timeout */ static guint timeout_id; @@ -54,8 +53,6 @@ typedef struct { static void setup_timeout (void); - - /* Removes the head alarm from the queue. Does not touch the timeout_id. */ static void pop_alarm (void) @@ -199,8 +196,6 @@ queue_alarm (AlarmRecord *ar) setup_timeout (); } - - /** * alarm_add: * @trigger: Time at which alarm will trigger. diff --git a/calendar/gui/alarm-notify/alarm.h b/calendar/gui/alarm-notify/alarm.h index 7a14db5d03..54a6e4c720 100644 --- a/calendar/gui/alarm-notify/alarm.h +++ b/calendar/gui/alarm-notify/alarm.h @@ -29,7 +29,6 @@ #include <time.h> #include <glib.h> - typedef void (* AlarmFunction) (gpointer alarm_id, time_t trigger, gpointer data); typedef void (* AlarmDestroyNotify) (gpointer alarm_id, gpointer data); @@ -40,6 +39,4 @@ gpointer alarm_add (time_t trigger, AlarmFunction alarm_fn, gpointer data, AlarmDestroyNotify destroy_notify_fn); void alarm_remove (gpointer alarm); - - #endif diff --git a/calendar/gui/alarm-notify/config-data.c b/calendar/gui/alarm-notify/config-data.c index b68268635d..567ca69c09 100644 --- a/calendar/gui/alarm-notify/config-data.c +++ b/calendar/gui/alarm-notify/config-data.c @@ -40,8 +40,6 @@ static gboolean inited = FALSE; static GConfClient *conf_client = NULL; static ESourceList *calendar_source_list = NULL, *tasks_source_list = NULL; - - /* Copied from ../calendar-config.c; returns whether the locale has 'am' and * 'pm' strings defined. */ |