Updating branch refs/heads/master
         to d853e79b6d1386f6f5ac00d996a4aa5b57831f4b (commit)
       from 5d1e8d8588d7dfa537ec2868ba8ed43359bf9437 (commit)

commit d853e79b6d1386f6f5ac00d996a4aa5b57831f4b
Author: Juha Kautto <[email protected]>
Date:   Wed Mar 24 12:30:27 2010 +0200

    4.5.7.21 Fixed bug 6338

 configure.in.in |    2 +-
 src/day-view.c  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index e6b6d00..dc3c882 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -9,7 +9,7 @@ dnl Written for Xfce by Juha Kautto <[email protected]>
 dnl
 
 dnl Version information
-m4_define([orage_version], [4.7.5.20-git])
+m4_define([orage_version], [4.7.5.21-git])
 
 m4_define([gtk_minimum_version], [2.10.0])
 m4_define([xfce_minimum_version], [4.6.0])
diff --git a/src/day-view.c b/src/day-view.c
index 5e7f63d..e9e7234 100644
--- a/src/day-view.c
+++ b/src/day-view.c
@@ -863,7 +863,7 @@ static void build_day_view_table(day_win *dw)
         }
         /* some rare locales show weekday in the default date, so we need to 
          * make it correct. Safer would be to call mktime() */
-        tm_date.tm_wday = ++tm_date.tm_wday%7;
+        tm_date.tm_wday = (tm_date.tm_wday+1)%7;
     }
     fill_hour_arrow(dw, days+1);
     g_free(today);
_______________________________________________
Xfce4-commits mailing list
[email protected]
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to