[grisbi-cvs] [SCM] grisbi branch, master, updated. upstream_version_0_9_4-112-g3ed5dbf

Philippe Delorme nobody at users.sourceforge.net
Thu Dec 8 23:40:27 CET 2011


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  3ed5dbfd3acf905ff0a296f0f828c9eee6ff61f9 (commit)
      from  fd883026138d6a88ec7622f6a0927692cd4af916 (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 -----------------------------------------------------------------
commit 3ed5dbfd3acf905ff0a296f0f828c9eee6ff61f9
Author: Philippe Delorme <philippedelorme at users.sourceforge.net>
Date:   Thu Dec 8 23:39:34 2011 +0100

    Remove extra semicolons

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

Changes:
diff --git a/src/accueil.c b/src/accueil.c
index 9174093..ee927e9 100644
--- a/src/accueil.c
+++ b/src/accueil.c
@@ -929,7 +929,7 @@ void gsb_main_page_affiche_ligne_du_compte ( GtkWidget *pTable,
         pStyleLabelSoldeCourant->fg[GTK_STATE_NORMAL] = *( gsb_color_get_couleur (
                         "couleur_solde_alarme_verte_normal" ) );
         pStyleLabelSoldeCourant->fg[GTK_STATE_PRELIGHT] = *( gsb_color_get_couleur (
-                        "couleur_solde_alarme_verte_prelight" ) );;
+                        "couleur_solde_alarme_verte_prelight" ) );
     }
     else
     {
diff --git a/src/go-optionmenu.c b/src/go-optionmenu.c
index 16039b2..f59c499 100644
--- a/src/go-optionmenu.c
+++ b/src/go-optionmenu.c
@@ -46,7 +46,7 @@
 /*END_INCLUDE*/
 
 /*START_STATIC*/
-static void connect_menu_signals (GtkMenu *menu, gpointer data);;
+static void connect_menu_signals (GtkMenu *menu, gpointer data);
 static void connect_menu_signals_to_submenu (GtkMenuItem *item, gpointer data);
 static gint go_option_menu_button_press (GtkWidget      *widget,
 			      GdkEventButton *event);
@@ -83,7 +83,7 @@ static void go_option_menu_position (GtkMenu  *menu,
 			  gint     *y,
 			  gboolean *push_in,
 			  gpointer  user_data);
-static void go_option_menu_remove_contents (GOOptionMenu *option_menu);;
+static void go_option_menu_remove_contents (GOOptionMenu *option_menu);
 static void go_option_menu_remove_menu (GOOptionMenu *option_menu);
 static gint go_option_menu_scroll_event (GtkWidget          *widget,
 			      GdkEventScroll     *event);
@@ -99,7 +99,7 @@ static void go_option_menu_size_allocate (GtkWidget     *widget,
 				    GtkAllocation *allocation);
 static void go_option_menu_size_request (GtkWidget      *widget,
 				   GtkRequisition *requisition);
-static void go_option_menu_update_contents (GOOptionMenu *option_menu, GtkMenu *menu);;
+static void go_option_menu_update_contents (GOOptionMenu *option_menu, GtkMenu *menu);
 static void go_option_menu_update_contents_real (GOOptionMenu *option_menu, 
 					   GtkMenu *menu, GtkMenuItem *menu_item);
 /*END_STATIC*/
diff --git a/src/gsb_account.c b/src/gsb_account.c
index f4cb49e..b62390e 100644
--- a/src/gsb_account.c
+++ b/src/gsb_account.c
@@ -380,7 +380,7 @@ gboolean gsb_account_update_combo_list ( GtkWidget *combo_box,
     if (!combo_box)
 	return FALSE;
 
-    store = GTK_LIST_STORE (gtk_combo_box_get_model ( GTK_COMBO_BOX (combo_box)));;
+    store = GTK_LIST_STORE (gtk_combo_box_get_model ( GTK_COMBO_BOX (combo_box)));
     gtk_list_store_clear (store);
 
     list_tmp = gsb_data_account_get_list_accounts ();
diff --git a/src/gsb_data_print_config.c b/src/gsb_data_print_config.c
index 8fcd3be..6b56f04 100644
--- a/src/gsb_data_print_config.c
+++ b/src/gsb_data_print_config.c
@@ -103,7 +103,7 @@ void gsb_data_print_config_init ( void )
     /* init report config */
     if (report_font_transactions)
 	pango_font_description_free (report_font_transactions);
-    report_font_transactions = pango_font_description_from_string  ("sans 6");;
+    report_font_transactions = pango_font_description_from_string  ("sans 6");
 
     if (report_font_title)
 	pango_font_description_free (report_font_title);
diff --git a/src/gsb_debug.c b/src/gsb_debug.c
index a63de8e..f65abb1 100644
--- a/src/gsb_debug.c
+++ b/src/gsb_debug.c
@@ -406,7 +406,7 @@ gchar * gsb_debug_reconcile_test ( void )
         reconcilied_amount = gsb_data_account_get_init_balance ( account_nb, -1 );
 
         /* On récupère la liste des opérations */
-        pTransactionList = gsb_data_transaction_get_complete_transactions_list ();;
+        pTransactionList = gsb_data_transaction_get_complete_transactions_list ();
 
         while ( pTransactionList )
         {
diff --git a/src/gsb_scheduler_list.c b/src/gsb_scheduler_list.c
index 59bc4c3..f4f083b 100644
--- a/src/gsb_scheduler_list.c
+++ b/src/gsb_scheduler_list.c
@@ -1473,7 +1473,7 @@ gboolean gsb_scheduler_list_select ( gint scheduled_number )
 							     &iter_mother_sort,
 							     iter_mother );
 	    path = gtk_tree_model_get_path ( GTK_TREE_MODEL (tree_model_sort_scheduler_list),
-					     &iter_mother_sort );;
+					     &iter_mother_sort );
 	    gtk_tree_view_expand_row ( GTK_TREE_VIEW (tree_view_scheduler_list),
 				       path,
 				       TRUE );
diff --git a/src/import_csv.c b/src/import_csv.c
index 7e19d92..1ce3663 100644
--- a/src/import_csv.c
+++ b/src/import_csv.c
@@ -308,7 +308,7 @@ void skip_line_toggled ( GtkCellRendererToggle * cell, gchar * path_str,
     gboolean toggle_item;
     gint * indices;
     GtkTreePath * path = gtk_tree_path_new_from_string (path_str);
-    GtkTreeModel * tree_model = gtk_tree_view_get_model ( tree_preview );;
+    GtkTreeModel * tree_model = gtk_tree_view_get_model ( tree_preview );
 
     /* Get toggled iter */
     gtk_tree_model_get_iter ( GTK_TREE_MODEL ( tree_model ), &iter, path );


hooks/post-receive
-- 
grisbi


More information about the cvs mailing list