diff options
author | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-09-02 14:22:55 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-09-02 14:22:55 +0900 |
commit | c9ccc7551b993d3c1c8627da84d66fd4b8c44b80 (patch) | |
tree | 928f69a012aa93168dac0a76b8158c56e71cea0e /gtk/gtkenums.h | |
parent | f2279d5e5130382c78eedb59b5da2e47ebd9885a (diff) | |
download | gtk+-c9ccc7551b993d3c1c8627da84d66fd4b8c44b80.tar.gz |
Some api changes for GtkWrapBox
Ammended documentation for GTK_WRAP_BOX_SPREAD_EVEN and renamed
GTK_WRAP_BOX_SPREAD_BEGIN -> GTK_WRAP_BOX_SPREAD_START.
Diffstat (limited to 'gtk/gtkenums.h')
-rw-r--r-- | gtk/gtkenums.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkenums.h b/gtk/gtkenums.h index 3523dc39db..e46d207265 100644 --- a/gtk/gtkenums.h +++ b/gtk/gtkenums.h @@ -559,15 +559,15 @@ typedef enum { /** * GtkWrapBoxSpreading: - * @GTK_WRAP_BOX_SPREAD_BEGIN: Items are allocated no more than their natural size + * @GTK_WRAP_BOX_SPREAD_START: Children are allocated no more than their natural size * in the layout's orientation and any extra space is left trailing at * the end of each line. - * @GTK_WRAP_BOX_SPREAD_END: Items are allocated no more than their natural size + * @GTK_WRAP_BOX_SPREAD_END: Children are allocated no more than their natural size * in the layout's orientation and any extra space skipped at the beginning * of each line. - * @GTK_WRAP_BOX_SPREAD_EVEN: Items are allocated no more than their natural size + * @GTK_WRAP_BOX_SPREAD_EVEN: Children are allocated no more than their natural size * in the layout's orientation and any extra space is evenly distributed - * between children. + * as empty space between children. * @GTK_WRAP_BOX_SPREAD_EXPAND: Items share the extra space evenly (or among children that 'expand' when * in %GTK_WRAP_ALLOCATE_FREE mode. * @@ -582,7 +582,7 @@ typedef enum { * */ typedef enum { - GTK_WRAP_BOX_SPREAD_BEGIN = 0, + GTK_WRAP_BOX_SPREAD_START = 0, GTK_WRAP_BOX_SPREAD_END, GTK_WRAP_BOX_SPREAD_EVEN, GTK_WRAP_BOX_SPREAD_EXPAND |