diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2010-10-14 15:58:03 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2010-10-14 15:58:41 +0200 |
| commit | da5441ecec51be3564c31275d193a2a18f157714 (patch) | |
| tree | 7e21c3e7c0189398b2d30adb935c4bbcf746264a /obrender/theme.c | |
| parent | a621e7a4fc9de355e4ef25afca745e2197c5fd47 (diff) | |
Fix g_slice_new0 call
Diffstat (limited to 'obrender/theme.c')
| -rw-r--r-- | obrender/theme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/obrender/theme.c b/obrender/theme.c index c29550b8..3ab2fd4c 100644 --- a/obrender/theme.c +++ b/obrender/theme.c @@ -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); |
