summaryrefslogtreecommitdiff
path: root/gobject/gvaluearray.c
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-06-22 14:29:25 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-06-22 14:29:25 +0000
commit5602b7e275ef5fb76cf7847f35b120dce3111705 (patch)
tree747bf948e57eb2c36acf3dba57fde69cf0d32137 /gobject/gvaluearray.c
parentb69be54f8bc858e39be72f664719b22c219fd12d (diff)
downloadglib-5602b7e275ef5fb76cf7847f35b120dce3111705.tar.gz
moved includes back to the top of the files (before gtk-doc SECTION
2008-06-22 Michael Natterer <mitch@imendio.com> * *.c: moved includes back to the top of the files (before gtk-doc SECTION comments). Add "config.h" in all files and move system included before glib includes. Remove trailing whitespace from SECTION comments and did some reformatting where lines were overly long, no documentation content was changed. svn path=/trunk/; revision=7089
Diffstat (limited to 'gobject/gvaluearray.c')
-rw-r--r--gobject/gvaluearray.c33
1 files changed, 20 insertions, 13 deletions
diff --git a/gobject/gvaluearray.c b/gobject/gvaluearray.c
index d0c963fbb..ff1249f20 100644
--- a/gobject/gvaluearray.c
+++ b/gobject/gvaluearray.c
@@ -16,26 +16,33 @@
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * MT safe
+ */
+
+#include "config.h"
+
+#include <string.h>
+#include <stdlib.h> /* qsort() */
+
+#include "gvaluearray.h"
+
+#include "gobjectalias.h"
+
+
/**
* SECTION:value_arrays
* @Short_description: A container structure to maintain an array of generic values
* @See_also:#GValue, #GParamSpecValueArray, g_param_spec_value_array()
* @Title: Value arrays
- *
- * The prime purpose of a #GValueArray is for it to be used as an object property
- * that holds an array of values. A #GValueArray wraps an array of #GValue elements
- * in order for it to be used as a boxed type through %G_TYPE_VALUE_ARRAY.
- */
-/*
- * MT safe
+ *
+ * The prime purpose of a #GValueArray is for it to be used as an
+ * object property that holds an array of values. A #GValueArray wraps
+ * an array of #GValue elements in order for it to be used as a boxed
+ * type through %G_TYPE_VALUE_ARRAY.
*/
-#include <config.h>
-
-#include "gvaluearray.h"
-#include "gobjectalias.h"
-#include <string.h>
-#include <stdlib.h> /* qsort() */
#ifdef DISABLE_MEM_POOLS
# define GROUP_N_VALUES (1) /* power of 2 !! */