]> Pileus Git - ~andy/gtk/commitdiff
#include <config.h> for HAVE_MALLINFO define, other minor cleanups.
authorManish Singh <yosh@gimp.org>
Tue, 21 Sep 2004 23:53:27 +0000 (23:53 +0000)
committerManish Singh <yosh@src.gnome.org>
Tue, 21 Sep 2004 23:53:27 +0000 (23:53 +0000)
Tue Sep 21 16:55:38 2004  Manish Singh  <yosh@gimp.org>

        * tests/testtreemodel.c: #include <config.h> for HAVE_MALLINFO define,
        other minor cleanups.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
tests/testtreemodel.c

index 9868d769d447748830dbb7b53d2dd198c7e8f389..a2c9ae574c374c1e5590da3a1f73eeb876621d9a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Sep 21 16:55:38 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/testtreemodel.c: #include <config.h> for HAVE_MALLINFO define,
+       other minor cleanups.
+
 Tue Sep 21 16:27:19 2004  Manish Singh  <yosh@gimp.org>
 
        * gdk/gdk.c: remove now unused arg variables.
index 9868d769d447748830dbb7b53d2dd198c7e8f389..a2c9ae574c374c1e5590da3a1f73eeb876621d9a 100644 (file)
@@ -1,3 +1,8 @@
+Tue Sep 21 16:55:38 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/testtreemodel.c: #include <config.h> for HAVE_MALLINFO define,
+       other minor cleanups.
+
 Tue Sep 21 16:27:19 2004  Manish Singh  <yosh@gimp.org>
 
        * gdk/gdk.c: remove now unused arg variables.
index 9868d769d447748830dbb7b53d2dd198c7e8f389..a2c9ae574c374c1e5590da3a1f73eeb876621d9a 100644 (file)
@@ -1,3 +1,8 @@
+Tue Sep 21 16:55:38 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/testtreemodel.c: #include <config.h> for HAVE_MALLINFO define,
+       other minor cleanups.
+
 Tue Sep 21 16:27:19 2004  Manish Singh  <yosh@gimp.org>
 
        * gdk/gdk.c: remove now unused arg variables.
index 9868d769d447748830dbb7b53d2dd198c7e8f389..a2c9ae574c374c1e5590da3a1f73eeb876621d9a 100644 (file)
@@ -1,3 +1,8 @@
+Tue Sep 21 16:55:38 2004  Manish Singh  <yosh@gimp.org>
+
+       * tests/testtreemodel.c: #include <config.h> for HAVE_MALLINFO define,
+       other minor cleanups.
+
 Tue Sep 21 16:27:19 2004  Manish Singh  <yosh@gimp.org>
 
        * gdk/gdk.c: remove now unused arg variables.
index 56b986b3f9dbec0af8b3a12bcd22740d345f6ff2..e8b1abe9eefbf804b9306ad425a773eb35c32c6a 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#include <config.h>
+
+#include <string.h>
+
 #ifdef HAVE_MALLINFO
 #include <malloc.h>
 #endif
+
 #include <gtk/gtk.h>
 
 static gint repeats = 2;
@@ -187,7 +192,6 @@ tree_store_insert_deep (GtkTreeModel *model,
   GtkTreeIter iter;
   gchar *text;
   FindData data;
-  gint n;
 
   text = g_strdup_printf ("row %d", i);
   data.n = g_random_int_range (0, items);
@@ -195,7 +199,7 @@ tree_store_insert_deep (GtkTreeModel *model,
   data.found = FALSE;
   if (data.n < i)
     gtk_tree_model_foreach (model, find_nth, &data);
-  gtk_tree_store_insert (store, &iter, data.found ? &(data.iter) : NULL, n);
+  gtk_tree_store_insert (store, &iter, data.found ? &(data.iter) : NULL, data.n);
   gtk_tree_store_set (store, &iter, 0, i, 1, text, -1);
   g_free (text);
 }
@@ -207,12 +211,10 @@ test_run (gchar        *title,
          ClearFunc    *clear,
          InsertFunc   *insert)
 {
-  GtkTreeIter iter;
   gint i, k, d, items;
-  gchar *text;
   GTimer *timer;
   gdouble elapsed;
-  int uordblks_before, memused;
+  int uordblks_before = 0, memused;
 
   g_print ("%s (average over %d runs, time in milliseconds)\n"
           "items \ttime      \ttime/item \tused memory\n", title, repeats);
@@ -253,7 +255,6 @@ int
 main (int argc, char *argv[])
 {
   GtkTreeModel *model;
-  GOptionContext *context;
   
   gtk_init_with_args (&argc, &argv, NULL, entries, NULL, NULL);