mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-24 12:41:16 +00:00
#include <config.h> for HAVE_MALLINFO define, other minor cleanups.
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.
This commit is contained in:
parent
1d3846451d
commit
3f280a1699
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -17,9 +17,14 @@
|
||||
* 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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user