]> git.pld-linux.org Git - packages/gnucash.git/commitdiff
- updated for 0.8.12
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 25 Oct 2005 08:22:46 +0000 (08:22 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    gnucash-types.patch -> 1.3

gnucash-types.patch

index 2e3ee5fba702acc3cd3dc2a6d88e0820d8767532..f655bb8f48212cf4e020ce6be81e7e8832b2d8b4 100644 (file)
     iguid ++;
  
     sprintf(buff, "CREATE SEQUENCE gnc_iguid_seq START %d;", iguid);
+--- gnucash-1.8.12/src/import-export/hbci/gnc-hbci-utils.c.orig        2005-10-25 09:41:37.000000000 +0200
++++ gnucash-1.8.12/src/import-export/hbci/gnc-hbci-utils.c     2005-10-25 09:40:52.000000000 +0200
+@@ -904,7 +904,7 @@
+ {
+   char *inbuffer = (char*)input;
+   char *outbuffer, *outbufferstart;
+-  int inbytes, outbytes;
++  size_t inbytes, outbytes;
+   inbytes = strlen(inbuffer);
+   outbytes = inbytes + 2;
+--- gnucash-1.8.12/src/import-export/hbci/hbci-interaction.c.orig      2005-08-16 21:56:55.000000000 +0200
++++ gnucash-1.8.12/src/import-export/hbci/hbci-interaction.c   2005-10-25 09:43:29.000000000 +0200
+@@ -474,14 +474,14 @@
+   g_assert(data);
+   if (id > 0) {
+-    dialog = g_hash_table_lookup(data->showbox_hash, (gpointer)id);
++    dialog = g_hash_table_lookup(data->showbox_hash, (gpointer)(size_t)id);
+   } else {
+     dialog = data->showbox_last;
+   }
+   if (dialog) {
+     gnome_dialog_close (GNOME_DIALOG (dialog));
+     gtk_widget_destroy (dialog);
+-    g_hash_table_remove(data->showbox_hash, (gpointer)id);
++    g_hash_table_remove(data->showbox_hash, (gpointer)(size_t)id);
+   }
+ }
+@@ -510,7 +510,7 @@
+   gtk_widget_show_all (dialog);
+   result = data->showbox_id;
+-  g_hash_table_insert(data->showbox_hash, (gpointer)result, dialog);
++  g_hash_table_insert(data->showbox_hash, (gpointer)(size_t)result, dialog);
+   data->showbox_id++;
+   data->showbox_last = dialog;
This page took 0.162515 seconds and 4 git commands to generate.