[nautilus] all: don't use eel_strlen()



commit 3a02c89ec0329ee6a1b0eab411eb0f95308626aa
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Wed Oct 5 12:24:26 2011 -0400

    all: don't use eel_strlen()

 src/nautilus-location-bar.c |    2 +-
 src/nautilus-window-slot.c  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-location-bar.c b/src/nautilus-location-bar.c
index 3cf337c..6831414 100644
--- a/src/nautilus-location-bar.c
+++ b/src/nautilus-location-bar.c
@@ -250,7 +250,7 @@ drag_data_get_callback (GtkWidget *widget,
 		gtk_selection_data_set (selection_data,
 					gtk_selection_data_get_target (selection_data),
 					8, (guchar *) entry_text,
-					eel_strlen (entry_text));
+					strlen (entry_text));
 		break;
 	default:
 		g_assert_not_reached ();
diff --git a/src/nautilus-window-slot.c b/src/nautilus-window-slot.c
index 2ce7632..4db2e66 100644
--- a/src/nautilus-window-slot.c
+++ b/src/nautilus-window-slot.c
@@ -359,7 +359,7 @@ nautilus_window_slot_set_title (NautilusWindowSlot *slot,
 		slot->title = g_strdup (title);
 	}
 
-	if (eel_strlen (slot->title) > 0 && slot->current_location_bookmark) {
+	if (strlen (slot->title) > 0 && slot->current_location_bookmark) {
 		changed = TRUE;
 	}
 



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