diff options
author | Not Zed <NotZed@Ximian.com> | 2004-04-30 11:41:03 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-30 11:41:03 +0800 |
commit | 79201be1ace1861c63e237732b975848480ee4b5 (patch) | |
tree | 585ae886d6ef0c5a8a19fb98893615a75ede3dee | |
parent | 4d20483f6c0f997b142d42ff70d3df00260d07d0 (diff) | |
download | gsoc2013-evolution-79201be1ace1861c63e237732b975848480ee4b5.tar gsoc2013-evolution-79201be1ace1861c63e237732b975848480ee4b5.tar.gz gsoc2013-evolution-79201be1ace1861c63e237732b975848480ee4b5.tar.bz2 gsoc2013-evolution-79201be1ace1861c63e237732b975848480ee4b5.tar.lz gsoc2013-evolution-79201be1ace1861c63e237732b975848480ee4b5.tar.xz gsoc2013-evolution-79201be1ace1861c63e237732b975848480ee4b5.tar.zst gsoc2013-evolution-79201be1ace1861c63e237732b975848480ee4b5.zip |
make the entry non-editable. Quick fix for #48132 (could convert to
2004-04-30 Not Zed <NotZed@Ximian.com>
* gui/dialogs/meeting-page.c (get_widgets): make the entry
non-editable. Quick fix for #48132 (could convert to optionmenu
but then we need to change again for gnome >?2.6).
svn path=/trunk/; revision=25698
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/meeting-page.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ba36055f6c..297315d513 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2004-04-30 Not Zed <NotZed@Ximian.com> + + * gui/dialogs/meeting-page.c (get_widgets): make the entry + non-editable. Quick fix for #48132 (could convert to optionmenu + but then we need to change again for gnome >?2.6). + 2004-04-29 Rodney Dawes <dobey@ximian.com> * gui/dialogs/cal-prefs-dialog.glade: Update the prefs dialog pages diff --git a/calendar/gui/dialogs/meeting-page.c b/calendar/gui/dialogs/meeting-page.c index fdd0cb40e1..8d52f0fb84 100644 --- a/calendar/gui/dialogs/meeting-page.c +++ b/calendar/gui/dialogs/meeting-page.c @@ -481,7 +481,8 @@ get_widgets (MeetingPage *mpage) priv->organizer_table = GW ("organizer-table"); priv->organizer = GW ("organizer"); gtk_combo_set_value_in_list (GTK_COMBO (priv->organizer), FALSE, FALSE); - + gtk_entry_set_editable(GTK_COMBO(priv->organizer)->entry, FALSE); + /* For showing existing organizers */ priv->existing_organizer_table = GW ("existing-organizer-table"); priv->existing_organizer = GW ("existing-organizer"); |