diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-02-07 08:30:28 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-02-07 08:30:28 +0800 |
commit | 2ffd13336b1cdf907e38ca55804a8753cf601b74 (patch) | |
tree | bf30a7dd7e060ae30075cabb024e7f2bcd22be28 /deskutils/gnotime/files/patch-src::idle-dialog.c | |
parent | 3fd253ec92986df26bc52dc90691d6c1859ea9f5 (diff) | |
download | marcuscom-ports-2ffd13336b1cdf907e38ca55804a8753cf601b74.tar marcuscom-ports-2ffd13336b1cdf907e38ca55804a8753cf601b74.tar.gz marcuscom-ports-2ffd13336b1cdf907e38ca55804a8753cf601b74.tar.bz2 marcuscom-ports-2ffd13336b1cdf907e38ca55804a8753cf601b74.tar.lz marcuscom-ports-2ffd13336b1cdf907e38ca55804a8753cf601b74.tar.xz marcuscom-ports-2ffd13336b1cdf907e38ca55804a8753cf601b74.tar.zst marcuscom-ports-2ffd13336b1cdf907e38ca55804a8753cf601b74.zip |
Remove this port now that it has been committed to the ports tree.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3561 df743ca5-7f9a-e211-a948-0013205c9059
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) - { |