[grisbi-cvs] [git push]Grisbi branch master updated. upstream_version_1_0_0-344-g4db8ed3

Ludovic Rousseau noreply at sourceforge.net
Thu Sep 22 20:41:20 CEST 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Grisbi".

The branch, master has been updated
       via  4db8ed35f5937d92835562e9fca558e00df3a97e (commit)
       via  5a2a8ee5c37fc6c37fe24d2f099859cab34ac18c (commit)
      from  329228a88bc869eb09e59a63f8e31c107aa35f8d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://grisbi.git.sourceforge.net/git/gitweb.cgi?p=grisbi/code;a=commitdiff;h=

commit 4db8ed35f5937d92835562e9fca558e00df3a97e
Author: Ludovic Rousseau <ludovic.rousseau at free.fr>
Date:   Thu Sep 22 20:31:09 2016 +0200

    Fix compilation error
    
    go-optionmenu.c:458:5: error: use of undeclared identifier 'arrow_left'
        arrow_left = gtk_image_new_from_file (tmp_filename);
        ^

diff --git a/src/go-optionmenu.c b/src/go-optionmenu.c
index 3ca7216..0bf9cbd 100644
--- a/src/go-optionmenu.c
+++ b/src/go-optionmenu.c
@@ -455,7 +455,7 @@ go_option_menu_init (GOOptionMenu *option_menu)
 			    FALSE, TRUE, 0);
 
     tmp_filename = g_build_filename (gsb_dirs_get_pixmaps_dir (), "arrow-down.svg", NULL);
-    arrow_left = gtk_image_new_from_file (tmp_filename);
+    arrow = gtk_image_new_from_file (tmp_filename);
     g_free (tmp_filename);
 
 	gtk_box_pack_end (box, arrow, FALSE, FALSE, 0);

http://grisbi.git.sourceforge.net/git/gitweb.cgi?p=grisbi/code;a=commitdiff;h=

commit 4db8ed35f5937d92835562e9fca558e00df3a97e
Author: Ludovic Rousseau <ludovic.rousseau at free.fr>
Date:   Thu Sep 22 20:31:09 2016 +0200

    Fix compilation error
    
    go-optionmenu.c:458:5: error: use of undeclared identifier 'arrow_left'
        arrow_left = gtk_image_new_from_file (tmp_filename);
        ^

diff --git a/src/go-optionmenu.c b/src/go-optionmenu.c
index 3ca7216..0bf9cbd 100644
--- a/src/go-optionmenu.c
+++ b/src/go-optionmenu.c
@@ -455,7 +455,7 @@ go_option_menu_init (GOOptionMenu *option_menu)
 			    FALSE, TRUE, 0);
 
     tmp_filename = g_build_filename (gsb_dirs_get_pixmaps_dir (), "arrow-down.svg", NULL);
-    arrow_left = gtk_image_new_from_file (tmp_filename);
+    arrow = gtk_image_new_from_file (tmp_filename);
     g_free (tmp_filename);
 
 	gtk_box_pack_end (box, arrow, FALSE, FALSE, 0);

-----------------------------------------------------------------------

Summary of changes:
 src/go-optionmenu.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Grisbi


More information about the cvs mailing list