aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-week-view.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-27 11:21:02 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-27 11:21:02 +0800
commite4afd3f9fb962ea1295a0657ec9f83a427829171 (patch)
tree85d2cd048f634f344e287b55a8ed48116c21e987 /calendar/gui/e-week-view.c
parent75a36a295adb64a012521c01724d6b2951986653 (diff)
downloadgsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar
gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.gz
gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.bz2
gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.lz
gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.xz
gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.tar.zst
gsoc2013-evolution-e4afd3f9fb962ea1295a0657ec9f83a427829171.zip
Remove trailing whitespace, again.
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r--calendar/gui/e-week-view.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c
index 52fabef69e..57c0547af0 100644
--- a/calendar/gui/e-week-view.c
+++ b/calendar/gui/e-week-view.c
@@ -10,7 +10,7 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
- * License along with the program; if not, see <http://www.gnu.org/licenses/>
+ * License along with the program; if not, see <http://www.gnu.org/licenses/>
*
*
* Authors:
@@ -367,7 +367,7 @@ static void
model_row_changed_cb (ETableModel *etm, int row, gpointer user_data)
{
EWeekView *week_view = E_WEEK_VIEW (user_data);
-
+
if (!E_CALENDAR_VIEW (week_view)->in_focus) {
return;
}
@@ -1931,7 +1931,7 @@ set_text_as_bold (EWeekViewEvent *event, EWeekViewEventSpan *span)
for (l = attendees; l; l = l->next) {
ECalComponentAttendee *attendee = l->data;
- if ((g_str_equal (itip_strip_mailto (attendee->value), address))
+ if ((g_str_equal (itip_strip_mailto (attendee->value), address))
|| (attendee->sentby && g_str_equal (itip_strip_mailto (attendee->sentby), address))) {
at = attendee;
break;
@@ -1939,7 +1939,7 @@ set_text_as_bold (EWeekViewEvent *event, EWeekViewEventSpan *span)
}
/* The attendee has not yet accepted the meeting, display the summary as bolded.
- If the attendee is not present, it might have come through a mailing list.
+ If the attendee is not present, it might have come through a mailing list.
In that case, we never show the meeting as bold even if it is unaccepted. */
if (at && (at->status == ICAL_PARTSTAT_NEEDSACTION))
gnome_canvas_item_set (span->text_item, "bold", TRUE, NULL);
@@ -3625,7 +3625,7 @@ e_week_view_on_editing_stopped (EWeekView *week_view,
if (!recur_component_dialog (client, comp, &mod, NULL, FALSE)) {
goto out;
}
-
+
if (mod == CALOBJ_MOD_ALL)
comp_util_sanitize_recurrence_master (comp, client);
@@ -3879,16 +3879,16 @@ e_month_view_do_cursor_key_up (EWeekView *week_view)
/* no easy way to calculate new selection_start_day, therefore
* calculate a time_t value and set_selected_time_range */
time_t current;
- if (e_calendar_view_get_selected_time_range(&week_view->cal_view, &current, NULL)) {
- current = time_add_week(current,-1);
+ if (e_calendar_view_get_selected_time_range(&week_view->cal_view, &current, NULL)) {
+ current = time_add_week(current,-1);
e_week_view_scroll_a_step(week_view, E_CAL_VIEW_MOVE_PAGE_UP);
- e_week_view_set_selected_time_range_visible(week_view,current,current);
+ e_week_view_set_selected_time_range_visible(week_view,current,current);
}
} else {
week_view->selection_start_day -= 7;
week_view->selection_end_day = week_view->selection_start_day;
}
-
+
g_signal_emit_by_name (week_view, "selected_time_changed");
gtk_widget_queue_draw (week_view->main_canvas);
}
@@ -3908,13 +3908,13 @@ e_month_view_do_cursor_key_down (EWeekView *week_view)
if (e_calendar_view_get_selected_time_range(&week_view->cal_view, &current, NULL)) {
current = time_add_week(current,1);
e_week_view_scroll_a_step(week_view, E_CAL_VIEW_MOVE_PAGE_DOWN);
- e_week_view_set_selected_time_range_visible(week_view,current,current);
+ e_week_view_set_selected_time_range_visible(week_view,current,current);
}
} else {
week_view->selection_start_day += 7;
week_view->selection_end_day = week_view->selection_start_day;
}
-
+
g_signal_emit_by_name (week_view, "selected_time_changed");
gtk_widget_queue_draw (week_view->main_canvas);
}
@@ -3930,15 +3930,15 @@ e_month_view_do_cursor_key_left (EWeekView *week_view)
* calculate a time_t value and set_selected_time_range */
time_t current;
if (e_calendar_view_get_selected_time_range(&week_view->cal_view, &current, NULL)) {
- current = time_add_day(current,-1);
+ current = time_add_day(current,-1);
e_week_view_scroll_a_step(week_view, E_CAL_VIEW_MOVE_PAGE_UP);
- e_week_view_set_selected_time_range_visible(week_view,current,current);
+ e_week_view_set_selected_time_range_visible(week_view,current,current);
}
} else {
week_view->selection_start_day--;
week_view->selection_end_day = week_view->selection_start_day;
}
-
+
g_signal_emit_by_name (week_view, "selected_time_changed");
gtk_widget_queue_draw (week_view->main_canvas);
}
@@ -3958,13 +3958,13 @@ e_month_view_do_cursor_key_right (EWeekView *week_view)
if (e_calendar_view_get_selected_time_range(&week_view->cal_view, &current, NULL)) {
current = time_add_day(current,1);
e_week_view_scroll_a_step(week_view, E_CAL_VIEW_MOVE_PAGE_DOWN);
- e_week_view_set_selected_time_range_visible(week_view,current,current);
+ e_week_view_set_selected_time_range_visible(week_view,current,current);
}
} else {
week_view->selection_start_day++;
week_view->selection_end_day = week_view->selection_start_day;
}
-
+
g_signal_emit_by_name (week_view, "selected_time_changed");
gtk_widget_queue_draw (week_view->main_canvas);
}