removed GAL dependency.
authorRodrigo Moya <rodrigo@ximian.com>
Wed, 5 Nov 2003 15:46:07 +0000 (15:46 +0000)
committerRodrigo Moya <rodrigo@src.gnome.org>
Wed, 5 Nov 2003 15:46:07 +0000 (15:46 +0000)
2003-11-05  Rodrigo Moya <rodrigo@ximian.com>

* libedatacal/e-cal-backend-sexp.c: removed GAL dependency.

calendar/ChangeLog
calendar/libedata-cal/e-cal-backend-sexp.c
calendar/libedatacal/e-cal-backend-sexp.c

index df2d954..f6ebd66 100644 (file)
@@ -1,3 +1,7 @@
+2003-11-05  Rodrigo Moya <rodrigo@ximian.com>
+
+       * libedatacal/e-cal-backend-sexp.c: removed GAL dependency.
+
 2003-11-04  JP Rosevear <jpr@ximian.com>
 
        * libedatacal/e-data-cal-factory.c: use properly name spaced
index 89622a3..42209d7 100644 (file)
@@ -21,7 +21,6 @@
 #include <string.h>
 #include <libgnome/gnome-i18n.h>
 #include <libedataserver/e-sexp.h>
-#include <gal/widgets/e-unicode.h>
 #include <libecal/e-cal-time-util.h>
 
 #include "e-cal-backend-sexp.h"
@@ -346,7 +345,7 @@ matches_text_list (GSList *text_list, const char *str)
                text = l->data;
                g_assert (text->value != NULL);
 
-               if (e_utf8_strstrcasedecomp (text->value, str) != NULL) {
+               if (e_util_utf8_strstrcasedecomp (text->value, str) != NULL) {
                        matches = TRUE;
                        break;
                }
@@ -394,7 +393,7 @@ matches_summary (ECalComponent *comp, const char *str)
        if (!text.value)
                return FALSE;
 
-       return e_utf8_strstrcasedecomp (text.value, str) != NULL;
+       return e_util_utf8_strstrcasedecomp (text.value, str) != NULL;
 }
 
 /* Returns whether any text field in a component matches the specified string */
index 89622a3..42209d7 100644 (file)
@@ -21,7 +21,6 @@
 #include <string.h>
 #include <libgnome/gnome-i18n.h>
 #include <libedataserver/e-sexp.h>
-#include <gal/widgets/e-unicode.h>
 #include <libecal/e-cal-time-util.h>
 
 #include "e-cal-backend-sexp.h"
@@ -346,7 +345,7 @@ matches_text_list (GSList *text_list, const char *str)
                text = l->data;
                g_assert (text->value != NULL);
 
-               if (e_utf8_strstrcasedecomp (text->value, str) != NULL) {
+               if (e_util_utf8_strstrcasedecomp (text->value, str) != NULL) {
                        matches = TRUE;
                        break;
                }
@@ -394,7 +393,7 @@ matches_summary (ECalComponent *comp, const char *str)
        if (!text.value)
                return FALSE;
 
-       return e_utf8_strstrcasedecomp (text.value, str) != NULL;
+       return e_util_utf8_strstrcasedecomp (text.value, str) != NULL;
 }
 
 /* Returns whether any text field in a component matches the specified string */