[yast-commit] r51716 - in /trunk/gtk: ChangeLog src/YGUtils.cc
Author: rpmcruz Date: Tue Sep 30 20:37:40 2008 New Revision: 51716 URL: http://svn.opensuse.org/viewcvs/yast?rev=51716&view=rev Log: * src/YGUtils.cc: bug fix 388172: looks like gtk xhtml processor is case sensitive. Modified: trunk/gtk/ChangeLog trunk/gtk/src/YGUtils.cc Modified: trunk/gtk/ChangeLog URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/ChangeLog?rev=51716&r1=51715&r2=51716&view=diff ============================================================================== --- trunk/gtk/ChangeLog (original) +++ trunk/gtk/ChangeLog Tue Sep 30 20:37:40 2008 @@ -15,6 +15,9 @@ * src/YGPackageSelector.cc: also, set a tooltip for the type combo box. + * src/YGUtils.cc: bug fix 388172: looks like gtk xhtml processor is case + sensitive. + 2008-09-30 Katarina Machalkova <kmachalkova@suse.cz> * version 2.17.1 Modified: trunk/gtk/src/YGUtils.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/YGUtils.cc?rev=51716&r1=51715&r2=51716&view=diff ============================================================================== --- trunk/gtk/src/YGUtils.cc (original) +++ trunk/gtk/src/YGUtils.cc Tue Sep 30 20:37:40 2008 @@ -322,7 +322,7 @@ else tag_len++; } - g_string_append_c (tag, instr[i]); + g_string_append_c (tag, g_ascii_tolower (instr[i])); } // Unmatched tags -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
rpmcruz@svn.opensuse.org