aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-05-26 00:25:41 +0800
committerChris Lahey <clahey@src.gnome.org>2000-05-26 00:25:41 +0800
commitda3c570d5e91ceef20d9846946a5bebec5b5fa50 (patch)
tree4474e7015d4945112cc19d1f8236725e33693ec8
parent6ba980d9eb23806fddd88be73af1b62d1dd3ead0 (diff)
downloadgsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar
gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.gz
gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.bz2
gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.lz
gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.xz
gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.zst
gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.zip
From shell/ChangeLog:
2000-05-25 Christopher James Lahey <clahey@helixcode.com> * e-storage-set-view.c: Make this always look pretty, with Helix GNOME or without. From calendar/ChangeLog: 2000-05-25 Christopher James Lahey <clahey@helixcode.com> * gui/main.c: Make it so that warnings don't crash calendar. svn path=/trunk/; revision=3201
-rw-r--r--calendar/ChangeLog4
-rw-r--r--calendar/gui/main.c2
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-storage-set-view.c4
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);