gtk2.patch 485 B

12345678910111213
  1. Index: gtk/gtkcalendar.c
  2. --- gtk/gtkcalendar.c.orig 2005-10-04 05:24:16 +0200
  3. +++ gtk/gtkcalendar.c 2005-10-06 09:02:38 +0200
  4. @@ -669,7 +669,7 @@
  5. * first day of the week to calendar:week_start:1 if you want Monday
  6. * to be the first day of the week, and so on.
  7. */
  8. - week_start = _("calendar:week_start:0");
  9. + char *week_start = _("calendar:week_start:0");
  10. if (strncmp (week_start, "calendar:week_start:", 20) == 0)
  11. priv->week_start = *(week_start + 20) - '0';