gtkieembed r214 - in trunk: . src
- From: hiikezoe svn gnome org
- To: svn-commits-list gnome org
- Subject: gtkieembed r214 - in trunk: . src
- Date: Thu, 12 Feb 2009 00:17:59 +0000 (UTC)
Author: hiikezoe
Date: Thu Feb 12 00:17:59 2009
New Revision: 214
URL: http://svn.gnome.org/viewvc/gtkieembed?rev=214&view=rev
Log:
2009-02-12 Hiroyuki Ikezoe <poincare ikezoe net>
* src/gtk-ie-embed.c (gtk_ie_embed_dom_event_target_get_attribibute):
Oops! g_ascii_strcasecmp() returns 0 if strings equals.
Modified:
trunk/ChangeLog
trunk/src/gtk-ie-embed.c
Modified: trunk/src/gtk-ie-embed.c
==============================================================================
--- trunk/src/gtk-ie-embed.c (original)
+++ trunk/src/gtk-ie-embed.c Thu Feb 12 00:17:59 2009
@@ -838,7 +838,7 @@
for (list = target->attribute_list; list; list = g_list_next (list)) {
GtkIEEmbedDOMEventTargetAttribute *attr = list->data;
- if (attr->name && g_ascii_strcasecmp (attr->name, attribute_name))
+ if (attr->name && !g_ascii_strcasecmp (attr->name, attribute_name))
return attr->value;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]