summaryrefslogtreecommitdiff
path: root/test/test.c
diff options
context:
space:
mode:
authorRamiro Estrugo <ramiro@src.gnome.org>2001-05-04 10:19:35 +0000
committerRamiro Estrugo <ramiro@src.gnome.org>2001-05-04 10:19:35 +0000
commit430f6bd8cc08aed463d6d13d827d92ae1e1188d3 (patch)
tree84b45af9b467bbcba868c66f73de2629b44230cb /test/test.c
parent921f6c187cff9929cf035341a8b5932a0acdcfde (diff)
downloadnautilus-430f6bd8cc08aed463d6d13d827d92ae1e1188d3.tar.gz
Update for latest round of stuff moving into Eel.
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test.c b/test/test.c
index b8334f111..af3a0f16c 100644
--- a/test/test.c
+++ b/test/test.c
@@ -1,7 +1,7 @@
#include "test.h"
#include <libart_lgpl/art_rgb.h>
-#include <libnautilus-private/nautilus-preferences.h>
+#include <eel/eel-preferences.h>
void
test_init (int *argc,
@@ -228,7 +228,7 @@ test_text_caption_set_text_for_int_preferences (EelTextCaption *text_caption,
g_return_if_fail (EEL_IS_TEXT_CAPTION (text_caption));
g_return_if_fail (name != NULL);
- int_value = nautilus_preferences_get_integer (name);
+ int_value = eel_preferences_get_integer (name);
text = g_strdup_printf ("%d", int_value);
@@ -246,7 +246,7 @@ test_text_caption_set_text_for_string_preferences (EelTextCaption *text_caption,
g_return_if_fail (EEL_IS_TEXT_CAPTION (text_caption));
g_return_if_fail (name != NULL);
- text = nautilus_preferences_get (name);
+ text = eel_preferences_get (name);
eel_text_caption_set_text (EEL_TEXT_CAPTION (text_caption), text);