forked from AuroraMiddleware/gtk
Fix braino, actually do check each char, not just the first one, when
2002-09-05 Tor Lillqvist <tml@iki.fi> * gdk/win32/gdkproperty-win32.c (gdk_property_change): Fix braino, actually do check each char, not just the first one, when looping through the text looking to insert CR in front of each LF. Bug noticed and fix provided by Florent Duguet.
This commit is contained in:
parent
752cd443da
commit
234acfd024
@ -1,3 +1,10 @@
|
||||
2002-09-05 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkproperty-win32.c (gdk_property_change): Fix braino,
|
||||
actually do check each char, not just the first one, when looping
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -1,3 +1,10 @@
|
||||
2002-09-05 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkproperty-win32.c (gdk_property_change): Fix braino,
|
||||
actually do check each char, not just the first one, when looping
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -1,3 +1,10 @@
|
||||
2002-09-05 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkproperty-win32.c (gdk_property_change): Fix braino,
|
||||
actually do check each char, not just the first one, when looping
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -1,3 +1,10 @@
|
||||
2002-09-05 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkproperty-win32.c (gdk_property_change): Fix braino,
|
||||
actually do check each char, not just the first one, when looping
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -1,3 +1,10 @@
|
||||
2002-09-05 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkproperty-win32.c (gdk_property_change): Fix braino,
|
||||
actually do check each char, not just the first one, when looping
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -1,3 +1,10 @@
|
||||
2002-09-05 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* gdk/win32/gdkproperty-win32.c (gdk_property_change): Fix braino,
|
||||
actually do check each char, not just the first one, when looping
|
||||
through the text looking to insert CR in front of each LF. Bug
|
||||
noticed and fix provided by Florent Duguet.
|
||||
|
||||
2002-09-04 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* demos/testanimation.c (do_image):
|
||||
|
@ -391,7 +391,7 @@ gdk_property_change (GdkWindow *window,
|
||||
cf = CF_TEXT;
|
||||
for (i = 0; i < nelements; i++)
|
||||
{
|
||||
if (*data == '\n')
|
||||
if (data[i] == '\n')
|
||||
*ucptr++ = '\r';
|
||||
*ucptr++ = data[i];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user