Fix g_slice_new0 call
This commit is contained in:
parent
a621e7a4fc
commit
da5441ecec
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
|
|||
a_unfocused_pressed_tmp = RrAppearanceNew(inst, 1);
|
||||
|
||||
/* initialize theme */
|
||||
theme = g_slice_new0(RrTheme, 1);
|
||||
theme = g_slice_new0(RrTheme);
|
||||
|
||||
theme->inst = inst;
|
||||
theme->name = g_strdup(name ? name : DEFAULT_THEME);
|
||||
|
|
Loading…
Reference in a new issue