diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-12-14 20:25:24 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-12-15 21:16:36 +0800 |
commit | 5e2efa2cd4ac7891fdf316dafd9ab249086e842a (patch) | |
tree | fe4b9c1ef8d783281789c4a378253aa41af35db3 /e-util/e-bit-array.c | |
parent | 63cff95414fc76e6d58a274ffebe019cd6feb0a5 (diff) | |
download | gsoc2013-evolution-5e2efa2cd4ac7891fdf316dafd9ab249086e842a.tar.gz gsoc2013-evolution-5e2efa2cd4ac7891fdf316dafd9ab249086e842a.tar.zst gsoc2013-evolution-5e2efa2cd4ac7891fdf316dafd9ab249086e842a.zip |
Finish adding symbols to libeutil API docs.
Diffstat (limited to 'e-util/e-bit-array.c')
-rw-r--r-- | e-util/e-bit-array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-bit-array.c b/e-util/e-bit-array.c index b17f8a089b..045f8e2439 100644 --- a/e-util/e-bit-array.c +++ b/e-util/e-bit-array.c @@ -412,7 +412,7 @@ e_bit_array_class_init (EBitArrayClass *class) EBitArray * e_bit_array_new (gint count) { - EBitArray *eba = g_object_new (E_BIT_ARRAY_TYPE, NULL); + EBitArray *eba = g_object_new (E_TYPE_BIT_ARRAY, NULL); eba->bit_count = count; eba->data = g_new0 (guint32, (eba->bit_count + 31) / 32); return eba; |