1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

- Quote icon path in file menus

- Bump PORTREVISION

PR:		119569
Submitted by:	Pietro Cerutti <gahr@gahr.ch>
This commit is contained in:
Martin Wilke 2008-01-21 13:00:37 +00:00
parent 602264d818
commit 69e800ca71
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=205980

View File

@ -45,8 +45,8 @@ $FreeBSD$
#MAKEDEP = makedepend -f- -s'\# CUT' -- -Y $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDES) $(EXTRA_INCLUDES) --
# piece together variables
--- viewer_new.c Mon Aug 7 23:29:16 2006
+++ viewer.c Mon Aug 7 23:34:38 2006
--- viewer.c.orig 2000-04-16 22:40:03.000000000 +0200
+++ viewer.c 2008-01-11 18:08:53.000000000 +0100
@@ -34,7 +34,7 @@
if (!file_to_load)
return;
@ -83,3 +83,21 @@ $FreeBSD$
}
else
realfile = g_strdup (file);
@@ -717,7 +717,7 @@
if (G_NODE_IS_LEAF (node))
{
/* It's an entry */
- fprintf (fp, "\"%s\"\t%s\texec\t\"%s\"\n",
+ fprintf (fp, "\"%s\"\t\"%s\"\texec\t\"%s\"\n",
dat->desc[0] == '\0' ? "NULL" : dat->desc,
dat->icon[0] == '\0' ? "NULL" : dat->icon,
dat->params[0] == '\0' ? "" : dat->params);
@@ -725,7 +725,7 @@
else
{
/* It's a submenu */
- fprintf (fp, "\"%s\"\t%s\tmenu\t\"%s\"\n",
+ fprintf (fp, "\"%s\"\t\"%s\"\tmenu\t\"%s\"\n",
dat->desc[0] == '\0' ? "NULL" : dat->desc,
dat->icon[0] == '\0' ? "NULL" : dat->icon,
dat->params[0] == '\0' ? "" : dat->params);