aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Meeks <michael@helixcode.com>2000-10-27 05:48:49 +0800
committerMichael Meeks <mmeeks@src.gnome.org>2000-10-27 05:48:49 +0800
commit8a112f4e6206e0a7a55086a0e311231458535add (patch)
tree7c2a18d6b8bb71ef505b606f512eed74fdb37240
parentbec6c50a7b9285e2aa43b92de1cd0bb4c919260e (diff)
downloadgsoc2013-evolution-8a112f4e6206e0a7a55086a0e311231458535add.tar
gsoc2013-evolution-8a112f4e6206e0a7a55086a0e311231458535add.tar.gz
gsoc2013-evolution-8a112f4e6206e0a7a55086a0e311231458535add.tar.bz2
gsoc2013-evolution-8a112f4e6206e0a7a55086a0e311231458535add.tar.lz
gsoc2013-evolution-8a112f4e6206e0a7a55086a0e311231458535add.tar.xz
gsoc2013-evolution-8a112f4e6206e0a7a55086a0e311231458535add.tar.zst
gsoc2013-evolution-8a112f4e6206e0a7a55086a0e311231458535add.zip
unsigned chars to isalpha
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. svn path=/trunk/; revision=6217
-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++)