diff options
author | Havoc Pennington <hp@pobox.com> | 2002-01-05 04:05:26 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2002-01-05 04:05:26 +0000 |
commit | e60f2abe9f114f800b22a824402fededf45a5ba7 (patch) | |
tree | f7220ba659cb7f50f4ea29fba649eb7b99837118 /test/test.c | |
parent | d84dbfa0dd361f02f03673a2dc83d272a1e6fd62 (diff) | |
download | nautilus-e60f2abe9f114f800b22a824402fededf45a5ba7.tar.gz |
add preload of the gconf cache, to hopefully avoid a zillion round trips
2002-01-04 Havoc Pennington <hp@pobox.com>
* libnautilus-private/nautilus-global-preferences.c
(nautilus_global_preferences_init): add preload of the gconf
cache, to hopefully avoid a zillion round trips to gconfd on
startup.
* test/test.c (test_window_new): remove weird gtk_window_set_policy
* test/test-nautilus-preferences-display.c: remove user level
stuff
* test/test-nautilus-preferences-change.c: remove user level stuff
* libnautilus-private/nautilus-global-preferences.c: the default
click policy was SPEED_TRADEOFF_LOCAL_ONLY, fix
* libnautilus-private/nautilus.schemas: add schemas file,
incomplete, needs to be finished and installed
* libnautilus-private/nautilus-global-preferences.c: strip out
user levels
* src/nautilus-shell-ui.xml: strip out user level menu
* src/nautilus-window-menus.c: strip out user level menu
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/test.c b/test/test.c index d2e085f17..f7efdf7ec 100644 --- a/test/test.c +++ b/test/test.c @@ -46,11 +46,10 @@ test_window_new (const char *title, guint border_width) } g_signal_connect (window, - "delete_event", - G_CALLBACK (test_delete_event), - NULL); + "delete_event", + G_CALLBACK (test_delete_event), + NULL); - gtk_window_set_policy (GTK_WINDOW (window), TRUE, TRUE, FALSE); gtk_container_set_border_width (GTK_CONTAINER (window), border_width); return window; |