diff options
Diffstat (limited to 'deskutils/gnotime/files/patch-src::idle-dialog.c')
-rw-r--r-- | deskutils/gnotime/files/patch-src::idle-dialog.c | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/deskutils/gnotime/files/patch-src::idle-dialog.c b/deskutils/gnotime/files/patch-src::idle-dialog.c deleted file mode 100644 index 0e271a9f6..000000000 --- a/deskutils/gnotime/files/patch-src::idle-dialog.c +++ /dev/null @@ -1,54 +0,0 @@ ---- src/idle-dialog.c.orig Thu Jul 8 00:17:13 2004 -+++ src/idle-dialog.c Thu Jul 8 00:18:46 2004 -@@ -111,12 +111,14 @@ - { - char * p; - char * ret; -+ int ampcnt = 0; -+ int len; -+ const char *start; - - p = strchr (str, '&'); - if (!p) return g_strdup (str); - - /* count number of ampersands */ -- int ampcnt = 0; - while (p) - { - ampcnt ++; -@@ -124,12 +126,12 @@ - } - - /* make room for the escapes */ -- int len = strlen(str); -+ len = strlen(str); - ret = g_new0 (char, len+4*ampcnt+1); - - /* replace & by & unless its already & */ - p = strchr (str, '&'); -- const char *start = str; -+ start = str; - while (p) - { - strncat (ret, start, p-start); -@@ -158,6 +160,8 @@ - char * msg; - time_t now = time(0); - time_t idle_time; -+ char *ptitle; -+ char *pdesc; - - /* Set a value for the thingy under the slider */ - if (3600 > credit) -@@ -201,9 +205,9 @@ - /* Update the total elapsed time part of the message */ - idle_time = now - dlg->last_activity; - -- char *ptitle = util_escape_html_markup ( -+ ptitle = util_escape_html_markup ( - gtt_project_get_title(dlg->prj)); -- char *pdesc = util_escape_html_markup ( -+ pdesc = util_escape_html_markup ( - gtt_project_get_desc(dlg->prj)); - if (3600 > idle_time) - { |