diff options
-rw-r--r-- | calendar/ChangeLog | 4 | ||||
-rw-r--r-- | calendar/gui/main.c | 2 | ||||
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-storage-set-view.c | 4 |
4 files changed, 14 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 14fe6509ce..b4731c166c 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,7 @@ +2000-05-25 Christopher James Lahey <clahey@helixcode.com> + + * gui/main.c: Make it so that warnings don't crash calendar. + 2000-05-25 Ettore Perazzoli <ettore@helixcode.com> * gui/evolution-calendar-control.c: Removed. diff --git a/calendar/gui/main.c b/calendar/gui/main.c index f1263b69e3..06254420cc 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -79,10 +79,12 @@ main (int argc, char **argv) init_calendar (); +#if 0 //g_log_set_always_fatal ((GLogLevelFlags) 0xFFFF); g_log_set_always_fatal (G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING); +#endif control_factory_init (); component_factory_init (); diff --git a/shell/ChangeLog b/shell/ChangeLog index 9854bb840e..e72c09712a 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-05-25 Christopher James Lahey <clahey@helixcode.com> + + * e-storage-set-view.c: Make this always look pretty, with Helix + GNOME or without. + 2000-05-25 Ettore Perazzoli <ettore@helixcode.com> * e-storage-set-view.c (e_storage_set_view_construct): Set the diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c index 7c957c2e9a..5b5a11972a 100644 --- a/shell/e-storage-set-view.c +++ b/shell/e-storage-set-view.c @@ -561,7 +561,9 @@ e_storage_set_view_construct (EStorageSetView *storage_set_view, /* Set up GtkCTree/GtkCList parameters. */ gtk_ctree_construct (ctree, 1, 0, NULL); - gtk_ctree_set_line_style (ctree, GTK_CTREE_LINES_DOTTED); + /* This looks ugly with Helix GNOME unless we do this. */ + gtk_ctree_set_line_style (ctree, GTK_CTREE_LINES_NONE); + gtk_ctree_set_expander_style (ctree, GTK_CTREE_EXPANDER_TRIANGLE); gtk_clist_set_selection_mode (GTK_CLIST (ctree), GTK_SELECTION_BROWSE); gtk_clist_set_row_height (GTK_CLIST (ctree), E_SHELL_MINI_ICON_SIZE); |