diff options
Diffstat (limited to 'calendar/gui/misc.c')
-rw-r--r-- | calendar/gui/misc.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/calendar/gui/misc.c b/calendar/gui/misc.c index a3243afa43..d02a9f618c 100644 --- a/calendar/gui/misc.c +++ b/calendar/gui/misc.c @@ -28,7 +28,6 @@ #include <ctype.h> #include <time.h> -#include <libedataserver/e-url.h> #include <glib/gi18n.h> #include "misc.h" @@ -64,25 +63,6 @@ string_is_empty (const gchar *value) } -/** - * get_uri_without_password - */ -gchar * -get_uri_without_password (const gchar *full_uri) -{ - EUri *uri; - gchar *uristr; - - uri = e_uri_new (full_uri); - if (!uri) - return NULL; - - uristr = e_uri_to_string (uri, FALSE); - e_uri_free (uri); - - return uristr; - } - gint get_position_in_array (GPtrArray *objects, gpointer item) |