[grisbi-cvs] [SCM] grisbi branch, master, updated. upstream_version_0_9.0-78-gec81811

Rémi Cardona nobody at users.sourceforge.net
Thu Mar 17 00:11:42 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  ec81811ac6401950cdc98399143c36f2c9096e73 (commit)
       via  c0f3f99c75f6e4dabf8b0242c33af096c57414a7 (commit)
      from  a846fe7c85040922c807b877319e558a5f767eb1 (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 ec81811ac6401950cdc98399143c36f2c9096e73
Author: Rémi Cardona <remi at gentoo.org>
Date:   Wed Mar 16 23:30:43 2011 +0100

    Declare 2 variables as static as they are only used within qif.c

commit c0f3f99c75f6e4dabf8b0242c33af096c57414a7
Author: Rémi Cardona <remi at gentoo.org>
Date:   Wed Mar 16 23:30:11 2011 +0100

    Declare 'builtin_formats' as static as it's only used within import.c

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

Changes:
diff --git a/src/import.c b/src/import.c
index e62a1e4..5f7fb8f 100644
--- a/src/import.c
+++ b/src/import.c
@@ -201,7 +201,7 @@ static GSList *import_formats = NULL;
 static gboolean marked_r_transactions_imported;
 
 /** Known built-in import formats.  Others are plugins.  */
-struct import_format builtin_formats[] =
+static struct import_format builtin_formats[] =
 {
 { "CSV", N_("Comma Separated Values"),     "csv", (import_function) csv_import_csv_account },
 { "QIF", N_("Quicken Interchange Format"), "qif", (import_function) recuperation_donnees_qif },
diff --git a/src/qif.c b/src/qif.c
index a354ca6..68e8727 100644
--- a/src/qif.c
+++ b/src/qif.c
@@ -65,8 +65,8 @@ extern GSList *liste_comptes_importes;
 extern GSList *liste_comptes_importes_error;
 /*END_EXTERN*/
 
-gchar *last_header = NULL;
-gboolean mismatch_dates = TRUE;
+static gchar *last_header = NULL;
+static gboolean mismatch_dates = TRUE;
 
 enum
 {


hooks/post-receive
-- 
grisbi


More information about the cvs mailing list