diff options
author | nobody <nobody@localhost> | 2003-03-11 02:10:25 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2003-03-11 02:10:25 +0800 |
commit | 5984716ffe64e708fefcd3d4f350862674e19a62 (patch) | |
tree | 12013af15eed04f9674d828c246e9a48bb85a849 /a11y/gal-a11y-util.c | |
parent | 95b34851418ce6b154d278433216cb611c512f1e (diff) | |
download | gsoc2013-evolution-5984716ffe64e708fefcd3d4f350862674e19a62.tar.gz gsoc2013-evolution-5984716ffe64e708fefcd3d4f350862674e19a62.tar.zst gsoc2013-evolution-5984716ffe64e708fefcd3d4f350862674e19a62.zip |
This commit was manufactured by cvs2svn to create tagEVOLUTION_1_3_1
'EVOLUTION_1_3_1'.
svn path=/tags/EVOLUTION_1_3_1/; revision=20244
Diffstat (limited to 'a11y/gal-a11y-util.c')
-rw-r--r-- | a11y/gal-a11y-util.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/a11y/gal-a11y-util.c b/a11y/gal-a11y-util.c deleted file mode 100644 index 0cf7c69dbb..0000000000 --- a/a11y/gal-a11y-util.c +++ /dev/null @@ -1,31 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * Authors: - * Christopher James Lahey <clahey@ximian.com> - * - * Copyright (C) 2002 Ximian, Inc. - */ - -#include <config.h> -#include "gal-a11y-util.h" - -GType -gal_a11y_type_register_static_with_private (GType parent_type, - const gchar *type_name, - GTypeInfo *info, - GTypeFlags flags, - gint priv_size, - gint *priv_offset) -{ - GTypeQuery query; - - g_type_query (parent_type, &query); - - info->class_size = query.class_size; - info->instance_size = query.instance_size + priv_size; - - if (priv_offset) - *priv_offset = query.instance_size; - - return g_type_register_static (parent_type, type_name, info, flags); -} |