Simplify init; there's always a section

This commit is contained in:
Julien Danjou 2008-03-15 09:43:06 +01:00
parent f88d403d1c
commit bd7b718166
1 changed files with 2 additions and 7 deletions

View File

@ -275,13 +275,8 @@ create_widgets(cfg_t* cfg_statusbar, Statusbar *statusbar)
static void static void
config_section_titlebar_init(cfg_t *cfg_titlebar, Titlebar *tb) config_section_titlebar_init(cfg_t *cfg_titlebar, Titlebar *tb)
{ {
if(cfg_titlebar) tb->position = position_get_from_str(cfg_getstr(cfg_titlebar, "position"));
{ tb->icon = position_get_from_str(cfg_getstr(cfg_titlebar, "icon"));
tb->position = position_get_from_str(cfg_getstr(cfg_titlebar, "position"));
tb->icon = position_get_from_str(cfg_getstr(cfg_titlebar, "icon"));
}
else
tb->position = Auto;
} }
static void static void