diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-06-23 06:31:13 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-06-23 06:31:13 +0000 |
commit | 750f6cea67c20796309d7d549e774b9d67ac0519 (patch) | |
tree | 4bf62898f4ad5e3a19c3cb30f0674be121852474 /x11-fm | |
parent | japanese/slrn: unbreak, change maintainer and master site (diff) |
Fix build with gcc 2.x
Notes
Notes:
svn path=/head/; revision=112022
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c b/x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c new file mode 100644 index 000000000000..2f1a4fe28e56 --- /dev/null +++ b/x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c @@ -0,0 +1,16 @@ +--- src/gnome-cmd-dir-indicator.c.orig Tue Jun 22 19:55:28 2004 ++++ src/gnome-cmd-dir-indicator.c Tue Jun 22 19:56:15 2004 +@@ -91,11 +91,11 @@ + if (event->type == GDK_BUTTON_PRESS && event->button == 1) { + /* left click - work out the path */ + gchar *chTo; ++ gint i; + const gchar *labelText = gtk_label_get_text (GTK_LABEL (indicator->priv->label)); ++ gint x = (gint)event->x; + chTo = malloc (strlen (labelText) + 1); + strcpy (chTo, labelText); +- gint x = (gint)event->x; +- gint i; + + for (i = 0; i < indicator->priv->numPositions; i++) { + if (x < indicator->priv->slashPixelPosition[i]) { |