diff options
author | Javier Jardón <jjardon@gnome.org> | 2011-06-06 19:07:23 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2011-06-10 13:07:54 +0100 |
commit | a8f5a8b9190d4c72f46a38579f23f2f2acfb174a (patch) | |
tree | a49366a4f7c1cd4f87949295400b1e70ff572dc5 /docs/CODING-STYLE | |
parent | 7c688cb8a6cd35990a26d3a4a26d098e3a5fe5a1 (diff) | |
download | gtk+-a8f5a8b9190d4c72f46a38579f23f2f2acfb174a.tar.gz |
docs: Do not use G_CONST_RETURN
Diffstat (limited to 'docs/CODING-STYLE')
-rw-r--r-- | docs/CODING-STYLE | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/CODING-STYLE b/docs/CODING-STYLE index 7b2e8f23fd..ae6e9fbc7c 100644 --- a/docs/CODING-STYLE +++ b/docs/CODING-STYLE @@ -421,10 +421,10 @@ definitions should be vertically aligned in three columns: The maximum width of each column is given by the longest element in the column: - void gtk_type_set_property (GtkType *type, - const gchar *value, - GError **error); - G_CONST_RETURN gchar *gtk_type_get_property (GtkType *type); + void gtk_type_set_property (GtkType *type, + const gchar *value, + GError **error); + const gchar *gtk_type_get_property (GtkType *type); It is also possible to align the columns to the next tab: |