[grisbi-cvs] [SCM] grisbi branch, master, updated. upstream_version_0_9.0-99-g105ea62

Rémi Cardona nobody at users.sourceforge.net
Tue Mar 22 00:34:38 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  105ea62ab7dd0f862e99f46392ab2a714ef8a56f (commit)
       via  e2f5a928f15cccc9ddb7df24fe0e3a37b2e13592 (commit)
       via  0be8a58ff3e2b1e349f6ad557a982453e2d71174 (commit)
      from  7ce46d145b34181e3b8938af750ec42a7ea9c4b3 (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 105ea62ab7dd0f862e99f46392ab2a714ef8a56f
Author: Rémi Cardona <remi at gentoo.org>
Date:   Tue Mar 22 00:15:53 2011 +0100

    Remove unused extern declaration

commit e2f5a928f15cccc9ddb7df24fe0e3a37b2e13592
Author: Rémi Cardona <remi at gentoo.org>
Date:   Mon Mar 21 23:40:09 2011 +0100

    Declare 2 variables as static as they're only used within gsb_form.c

commit 0be8a58ff3e2b1e349f6ad557a982453e2d71174
Author: Rémi Cardona <remi at gentoo.org>
Date:   Mon Mar 21 23:37:09 2011 +0100

    Declare 2 variables as static as they're only used within bet_tab.c

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

Changes:
diff --git a/src/bet_tab.c b/src/bet_tab.c
index f256c96..653b937 100644
--- a/src/bet_tab.c
+++ b/src/bet_tab.c
@@ -166,11 +166,11 @@ extern GtkWidget *window;
 /* gestion de la largeur des colonnes du tableau */
 
 /* tableau des colonnes */
-GtkTreeViewColumn *bet_array_tree_view_columns[BET_ARRAY_COLUMNS];
+static GtkTreeViewColumn *bet_array_tree_view_columns[BET_ARRAY_COLUMNS];
 /* the initial width of each column */
 gint bet_array_col_width[BET_ARRAY_COLUMNS];
 /* the initial width of the tree_view */
-gint bet_array_current_tree_view_width = 0;
+static gint bet_array_current_tree_view_width = 0;
 
 
 enum bet_estimation_tree_columns
diff --git a/src/gsb_file_load.c b/src/gsb_file_load.c
index d6d47db..4f678d1 100644
--- a/src/gsb_file_load.c
+++ b/src/gsb_file_load.c
@@ -188,7 +188,6 @@ extern gint no_devise_totaux_categ;
 extern gint no_devise_totaux_ib;
 extern gint no_devise_totaux_tiers;
 extern gsb_real null_real;
-extern gint scheduler_col_width[SCHEDULER_COL_VISIBLE_COLUMNS];
 extern GdkColor split_background;
 extern gint tab_affichage_ope[TRANSACTION_LIST_ROWS_NB][CUSTOM_MODEL_VISIBLE_COLUMNS];
 extern GdkColor text_color[2];
diff --git a/src/gsb_form.c b/src/gsb_form.c
index f12dcdb..1ca6f5d 100644
--- a/src/gsb_form.c
+++ b/src/gsb_form.c
@@ -123,7 +123,7 @@ static GtkWidget *form_expander = NULL;
  * for scheduled transactions
  * for transactions
  * the buttons valid/cancel */
-GtkWidget *form_scheduled_part;
+static GtkWidget *form_scheduled_part;
 GtkWidget *form_transaction_part;
 
 /* block the size allocate signal to avoid to move several times
@@ -142,7 +142,7 @@ GtkWidget *form_button_valid;
 GtkWidget *form_button_cancel;
 
 /* Buttons for the form */
-GtkWidget *form_button_part;
+static GtkWidget *form_button_part;
 
 /** THE form */
 static GtkWidget *transaction_form;


hooks/post-receive
-- 
grisbi


More information about the cvs mailing list