Plug in the defaults from the schemas file here, so that even if something

* gui/calendar-config.c (calendar_config_get_hpane_pos)
	(calendar_config_get_vpane_pos)
	(calendar_config_get_month_hpane_pos)
	(calendar_config_get_month_vpane_pos): Plug in the defaults from
	the schemas file here, so that even if something goes wrong with
	the schemas, people will still get reasonable defaults instead of
	"I click on the calendar and it shows me tasks".

svn path=/trunk/; revision=21495
This commit is contained in:
Dan Winship
2003-06-20 14:36:03 +00:00
parent f663802fcf
commit 592995eeed
2 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,13 @@
2003-06-18 Dan Winship <danw@ximian.com>
* gui/calendar-config.c (calendar_config_get_hpane_pos)
(calendar_config_get_vpane_pos)
(calendar_config_get_month_hpane_pos)
(calendar_config_get_month_vpane_pos): Plug in the defaults from
the schemas file here, so that even if something goes wrong with
the schemas, people will still get reasonable defaults instead of
"I click on the calendar and it shows me tasks".
2003-06-16 Rodrigo Moya <rodrigo@ximian.com>
* gui/dialogs/comp-editor.c (make_title_from_comp): removed unused

View File

@ -287,7 +287,7 @@ calendar_config_get_hpane_pos (void)
{
return e_config_listener_get_long_with_default (config,
"/apps/evolution/calendar/display/hpane_position",
-1, NULL);
400, NULL);
}
@ -301,7 +301,7 @@ calendar_config_set_hpane_pos (gint hpane_pos)
gint
calendar_config_get_vpane_pos (void)
{
return e_config_listener_get_long_with_default (config, "/apps/evolution/calendar/display/vpane_position", -1, NULL);
return e_config_listener_get_long_with_default (config, "/apps/evolution/calendar/display/vpane_position", 150, NULL);
}
@ -315,7 +315,7 @@ calendar_config_set_vpane_pos (gint vpane_pos)
gint
calendar_config_get_month_hpane_pos (void)
{
return e_config_listener_get_long_with_default (config, "/apps/evolution/calendar/display/month_hpane_position", -1, NULL);
return e_config_listener_get_long_with_default (config, "/apps/evolution/calendar/display/month_hpane_position", 32000, NULL);
}
@ -329,7 +329,7 @@ calendar_config_set_month_hpane_pos (gint hpane_pos)
gint
calendar_config_get_month_vpane_pos (void)
{
return e_config_listener_get_long_with_default (config, "/apps/evolution/calendar/display/month_vpane_position", 0, NULL);
return e_config_listener_get_long_with_default (config, "/apps/evolution/calendar/display/month_vpane_position", 150, NULL);
}