diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-09-04 03:48:48 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-09-04 03:54:46 +0800 |
commit | 04b01c5b1c969978a825087be1e0d3c91598a890 (patch) | |
tree | 21be76d489f5e5c3db72d7076461650964137292 /lib | |
parent | 51864e36d205e10752753605ca0592f39f000606 (diff) | |
download | gsoc2013-epiphany-04b01c5b1c969978a825087be1e0d3c91598a890.tar.gz gsoc2013-epiphany-04b01c5b1c969978a825087be1e0d3c91598a890.tar.zst gsoc2013-epiphany-04b01c5b1c969978a825087be1e0d3c91598a890.zip |
ephy-removable-pixbuf-renderer: reorder policy enum
This way the default item is PRELIT. This will be useful when using
this type as a cell renderer attribute later on.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-removable-pixbuf-renderer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/ephy-removable-pixbuf-renderer.h b/lib/widgets/ephy-removable-pixbuf-renderer.h index 7bb4458de..05c9849d4 100644 --- a/lib/widgets/ephy-removable-pixbuf-renderer.h +++ b/lib/widgets/ephy-removable-pixbuf-renderer.h @@ -40,8 +40,8 @@ typedef struct _EphyRemovablePixbufRendererClass EphyRemovablePixbufRendererClas typedef struct _EphyRemovablePixbufRendererPrivate EphyRemovablePixbufRendererPrivate; typedef enum { - EPHY_REMOVABLE_PIXBUF_RENDER_NEVER = 0, - EPHY_REMOVABLE_PIXBUF_RENDER_PRELIT, + EPHY_REMOVABLE_PIXBUF_RENDER_PRELIT = 0, + EPHY_REMOVABLE_PIXBUF_RENDER_NEVER, EPHY_REMOVABLE_PIXBUF_RENDER_ALWAYS } EphyRemovablePixbufRenderPolicy; |