Author: spouliot
Date: 2006-10-06 10:42:05 -0400 (Fri, 06 Oct 2006)
New Revision: 66355

Modified:
   trunk/libgdiplus/src/ChangeLog
   trunk/libgdiplus/src/graphics.c
Log:
2006-10-06  Sebastien Pouliot  <[EMAIL PROTECTED]> 
        * graphics.c: '.' can also be used as a wrap point. Fix bug #79594.


Modified: trunk/libgdiplus/src/ChangeLog
===================================================================
--- trunk/libgdiplus/src/ChangeLog      2006-10-06 14:37:23 UTC (rev 66354)
+++ trunk/libgdiplus/src/ChangeLog      2006-10-06 14:42:05 UTC (rev 66355)
@@ -1,7 +1,8 @@
-2006-10-06  Sebastien Pouliot  <[EMAIL PROTECTED]>
+2006-10-06  Sebastien Pouliot  <[EMAIL PROTECTED]> 
 
        * font.c: Always zeroize LOGFONT facename even when we error out. This
        removes a lot of warnings from valgrind when running unit tests.
+       * graphics.c: '.' can also be used as a wrap point. Fix bug #79594.
 
 2006-10-05  Sebastien Pouliot  <[EMAIL PROTECTED]>
 

Modified: trunk/libgdiplus/src/graphics.c
===================================================================
--- trunk/libgdiplus/src/graphics.c     2006-10-06 14:37:23 UTC (rev 66354)
+++ trunk/libgdiplus/src/graphics.c     2006-10-06 14:42:05 UTC (rev 66355)
@@ -2297,7 +2297,9 @@
                                /* Fall through */
                        }
 
-                       case ' ': {
+                       case ' ':
+                       case '.':
+                       {
                                /* Mark where we can break for a new line */
                                CurrentDetail->Flags |= STRING_DETAIL_BREAK;
                                break;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to