aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-03-16 06:49:47 +0800
committerDan Winship <danw@src.gnome.org>2001-03-16 06:49:47 +0800
commit4fb2aeae575248d833d0805a1b36de857c85de5b (patch)
tree6b4b85c2c9f9bc63def61e7421cd5763b764516c
parentfcf634c1ab152fd6bdd10ff1b8f95fe2d5181524 (diff)
downloadgsoc2013-evolution-4fb2aeae575248d833d0805a1b36de857c85de5b.tar
gsoc2013-evolution-4fb2aeae575248d833d0805a1b36de857c85de5b.tar.gz
gsoc2013-evolution-4fb2aeae575248d833d0805a1b36de857c85de5b.tar.bz2
gsoc2013-evolution-4fb2aeae575248d833d0805a1b36de857c85de5b.tar.lz
gsoc2013-evolution-4fb2aeae575248d833d0805a1b36de857c85de5b.tar.xz
gsoc2013-evolution-4fb2aeae575248d833d0805a1b36de857c85de5b.tar.zst
gsoc2013-evolution-4fb2aeae575248d833d0805a1b36de857c85de5b.zip
Update arguments to e_canvas_item_grab_focus.
* e-meeting-time-sel.c (e_meeting_time_selector_on_text_item_event): * e-meeting-time-sel-list-item.c (e_meeting_time_selector_list_item_button_press): Update arguments to e_canvas_item_grab_focus. svn path=/trunk/; revision=8749
-rw-r--r--widgets/meeting-time-sel/ChangeLog8
-rw-r--r--widgets/meeting-time-sel/e-meeting-time-sel-list-item.c2
-rw-r--r--widgets/meeting-time-sel/e-meeting-time-sel.c2
3 files changed, 10 insertions, 2 deletions
diff --git a/widgets/meeting-time-sel/ChangeLog b/widgets/meeting-time-sel/ChangeLog
index 3b917ecf07..a7bc2ab85f 100644
--- a/widgets/meeting-time-sel/ChangeLog
+++ b/widgets/meeting-time-sel/ChangeLog
@@ -1,3 +1,11 @@
+2001-03-15 Dan Winship <danw@ximian.com>
+
+ * e-meeting-time-sel.c
+ (e_meeting_time_selector_on_text_item_event):
+ * e-meeting-time-sel-list-item.c
+ (e_meeting_time_selector_list_item_button_press): Update arguments
+ to e_canvas_item_grab_focus.
+
2000-12-25 Miguel de Icaza <miguel@helixcode.com>
* e-meeting-time-sel.c (e_meeting_time_selector_attendee_add): Set
diff --git a/widgets/meeting-time-sel/e-meeting-time-sel-list-item.c b/widgets/meeting-time-sel/e-meeting-time-sel-list-item.c
index da7e4176be..6be26edc86 100644
--- a/widgets/meeting-time-sel/e-meeting-time-sel-list-item.c
+++ b/widgets/meeting-time-sel/e-meeting-time-sel-list-item.c
@@ -374,7 +374,7 @@ e_meeting_time_selector_list_item_button_press (EMeetingTimeSelectorListItem *mt
#endif
attendee = &g_array_index (mts->attendees, EMeetingTimeSelectorAttendee, row);
- e_canvas_item_grab_focus (attendee->text_item);
+ e_canvas_item_grab_focus (attendee->text_item, TRUE);
return TRUE;
}
} else {
diff --git a/widgets/meeting-time-sel/e-meeting-time-sel.c b/widgets/meeting-time-sel/e-meeting-time-sel.c
index 96db389e52..db3622315a 100644
--- a/widgets/meeting-time-sel/e-meeting-time-sel.c
+++ b/widgets/meeting-time-sel/e-meeting-time-sel.c
@@ -3238,7 +3238,7 @@ e_meeting_time_selector_on_text_item_event (GnomeCanvasItem *item,
}
attendee = &g_array_index (mts->attendees, EMeetingTimeSelectorAttendee, row);
- e_canvas_item_grab_focus (attendee->text_item);
+ e_canvas_item_grab_focus (attendee->text_item, TRUE);
/* Try to move the cursor to the end of the text. */
gtk_object_get (GTK_OBJECT (attendee->text_item),