summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2012-12-31 17:31:50 +0000
committerRobert Bragg <robert@linux.intel.com>2013-01-21 14:20:38 +0000
commita1760b65d3175f8e90258fc80316c608cdbf2c56 (patch)
treea5402be5c4d3fbad536e271fcf5ba416ec386050
parent5395dce7a76f413c44325d9a45645d3689902118 (diff)
downloadcogl-a1760b65d3175f8e90258fc80316c608cdbf2c56.tar.gz
doc: Put the opening '{' at the end of combined typedefs
gtk-doc is not smart enough to parse things like: typedef struct { ... } CoglFoo; but needs the '{' at the end of the first line. (cherry picked from commit d1187550ef547305fdeb8a22a7e39a95611a0e1d)
-rw-r--r--cogl/cogl-error.h3
-rw-r--r--cogl/cogl-object.h6
2 files changed, 3 insertions, 6 deletions
diff --git a/cogl/cogl-error.h b/cogl/cogl-error.h
index f5867899..1b6a9519 100644
--- a/cogl/cogl-error.h
+++ b/cogl/cogl-error.h
@@ -113,8 +113,7 @@
* @code: A specific error code within a specified domain
* @message: A human readable error message
*/
-typedef struct _CoglError
-{
+typedef struct _CoglError {
uint32_t domain;
int code;
char *message;
diff --git a/cogl/cogl-object.h b/cogl/cogl-object.h
index 87fdce2b..eb7a8252 100644
--- a/cogl/cogl-object.h
+++ b/cogl/cogl-object.h
@@ -83,8 +83,7 @@ cogl_object_unref (void *object);
*
* Since: 1.4
*/
-typedef struct
-{
+typedef struct {
int unused;
} CoglUserDataKey;
@@ -114,8 +113,7 @@ typedef void (*CoglUserDataDestroyCallback) (void *user_data);
* Since: 1.8
* Stability: unstable
*/
-typedef struct
-{
+typedef struct {
const char *name;
unsigned long instance_count;
} CoglDebugObjectTypeInfo;