aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/cal-util/calobj.c4
-rw-r--r--calendar/gui/Evolution-Composer.h1
-rw-r--r--calendar/pcs/cal-factory.c2
4 files changed, 9 insertions, 4 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index e5233376cc..19b40874da 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2000-10-26 Michael Meeks <michael@helixcode.com>
+
+ * pcs/cal-factory.c (str_tolower): unsigned chars to isalpha
+
+ * cal-util/calobj.c (weekdaylist, weekdaynum): ditto.
+
2000-10-25 Jesse Pavel <jpavel@helixcode.com>
* gui/e-meeting-edit.c: brushed up some code to deal with
diff --git a/calendar/cal-util/calobj.c b/calendar/cal-util/calobj.c
index 0ede42ebc6..bcb1b9bb88 100644
--- a/calendar/cal-util/calobj.c
+++ b/calendar/cal-util/calobj.c
@@ -253,7 +253,7 @@ weekdaylist (iCalObject *o, char **str)
(*str)++;
}
}
- } while (isalpha (**str));
+ } while (isalpha ((unsigned char) **str));
if (o->recur->weekday == 0){
struct tm tm = *localtime (&o->dtstart);
@@ -289,7 +289,7 @@ weekdaynum (iCalObject *o, char **str)
(*str)++;
}
}
- } while (isalpha (**str));
+ } while (isalpha ((unsigned char) **str));
}
static void
diff --git a/calendar/gui/Evolution-Composer.h b/calendar/gui/Evolution-Composer.h
index 3ff12cfa93..f99f5eca3e 100644
--- a/calendar/gui/Evolution-Composer.h
+++ b/calendar/gui/Evolution-Composer.h
@@ -15,7 +15,6 @@ extern "C"
/** typedefs **/
#include <bonobo/Bonobo.h>
-# 13 "/opt/gnome/share/idl/Bonobo.idl"
#if !defined(ORBIT_DECL_Evolution_Composer) && !defined(_Evolution_Composer_defined)
#define ORBIT_DECL_Evolution_Composer 1
#define _Evolution_Composer_defined 1
diff --git a/calendar/pcs/cal-factory.c b/calendar/pcs/cal-factory.c
index a89f2fe9f4..a67f8b777f 100644
--- a/calendar/pcs/cal-factory.c
+++ b/calendar/pcs/cal-factory.c
@@ -785,7 +785,7 @@ static char *
str_tolower (const char *s)
{
char *str;
- char *p;
+ unsigned char *p;
str = g_strdup (s);
for (p = str; *p; p++)