aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-03-10 05:28:03 +0800
committerChris Toshok <toshok@src.gnome.org>2002-03-10 05:28:03 +0800
commitc807f01f8f9f8ec9df6461aad78b1247dd4cc1ce (patch)
tree5688ca5d5b104ef1aa6454e2b7760a71f0cacee6
parent626182bef55006c632db43e73e53105d451f9930 (diff)
downloadgsoc2013-evolution-c807f01f8f9f8ec9df6461aad78b1247dd4cc1ce.tar
gsoc2013-evolution-c807f01f8f9f8ec9df6461aad78b1247dd4cc1ce.tar.gz
gsoc2013-evolution-c807f01f8f9f8ec9df6461aad78b1247dd4cc1ce.tar.bz2
gsoc2013-evolution-c807f01f8f9f8ec9df6461aad78b1247dd4cc1ce.tar.lz
gsoc2013-evolution-c807f01f8f9f8ec9df6461aad78b1247dd4cc1ce.tar.xz
gsoc2013-evolution-c807f01f8f9f8ec9df6461aad78b1247dd4cc1ce.tar.zst
gsoc2013-evolution-c807f01f8f9f8ec9df6461aad78b1247dd4cc1ce.zip
Bumped version number to 0.19.99.7
2002-03-09 Chris Toshok <toshok@ximian.com> * configure.in: Bumped version number to 0.19.99.7 * gal/widgets/e-unicode.c (e_utf8_strstrcasedecomp): we want to return o from here on success, not p, since p is incremented one unicode character past the point where the substring begins. (e_utf8_strstrcase): same. svn path=/trunk/; revision=16000
-rw-r--r--widgets/misc/e-unicode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/misc/e-unicode.c b/widgets/misc/e-unicode.c
index a39e517f71..1a3f606732 100644
--- a/widgets/misc/e-unicode.c
+++ b/widgets/misc/e-unicode.c
@@ -104,7 +104,7 @@ e_utf8_strstrcasedecomp (const gchar *haystack, const gchar *needle)
npos++;
}
if (npos == nlen) {
- return p;
+ return o;
}
}
}
@@ -152,7 +152,7 @@ e_utf8_strstrcase (const gchar *haystack, const gchar *needle)
npos++;
}
if (npos == nlen) {
- return p;
+ return o;
}
}
o = p;