libgda r3313 - in trunk: . WixInstaller installers installers/WindowsWix libgda



Author: vivien
Date: Wed Feb  4 17:39:48 2009
New Revision: 3313
URL: http://svn.gnome.org/viewvc/libgda?rev=3313&view=rev

Log:
2009-02-04  Vivien Malerba <malerba gnome-db org>

	* libgda/gda-data-model.c: fixed a bug where the number of rows was printed
	after every line in gda_data_model_dump()
	* WixInstaller: moved to installers/WindowsWix
	* installers: new directory to store information and scripts about OS
	specific installers


Added:
   trunk/installers/
   trunk/installers/WindowsWix/   (props changed)
      - copied from r3311, /trunk/WixInstaller/
Removed:
   trunk/WixInstaller/
Modified:
   trunk/ChangeLog
   trunk/libgda/gda-data-model.c

Modified: trunk/libgda/gda-data-model.c
==============================================================================
--- trunk/libgda/gda-data-model.c	(original)
+++ trunk/libgda/gda-data-model.c	Wed Feb  4 17:39:48 2009
@@ -2250,9 +2250,8 @@
 		for (i = 0; i < n_cols; i++) 
 			g_strfreev (cols_str [i]);
 		g_free (cols_str);
-	
-		g_string_append_printf (string, ngettext("(%d row)\n", "(%d rows)\n", n_rows), n_rows);
 	}
+	g_string_append_printf (string, ngettext("(%d row)\n", "(%d rows)\n", n_rows), n_rows);
 
  out:
 	if (ramodel)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]