diff options
author | raveit65 <[email protected]> | 2015-09-01 20:06:15 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-09-06 13:08:31 +0200 |
commit | 0ea8ddb0d7f34a22da6467fb4688b321735c601d (patch) | |
tree | 1ce4aefcdfe761c2f813ab315539e68ce71d07c3 /src/eom-print-preview.c | |
parent | 35e40d42b54aab81f37323e4f7830318f9db6bf1 (diff) | |
download | eom-0ea8ddb0d7f34a22da6467fb4688b321735c601d.tar.bz2 eom-0ea8ddb0d7f34a22da6467fb4688b321735c601d.tar.xz |
Gtk3: Remove deprecated GtkVBox/GtkHBox usage
The GtkHBox and GtkVBox have been deprecated by now.
Also be consistent with the other properties declarations
and use PROP_0 instead of PROP = 1.
taken from:
https://git.gnome.org/browse/eog/commit/?id=81cb068
Diffstat (limited to 'src/eom-print-preview.c')
-rw-r--r-- | src/eom-print-preview.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/eom-print-preview.c b/src/eom-print-preview.c index a985a7f..0f5f484 100644 --- a/src/eom-print-preview.c +++ b/src/eom-print-preview.c @@ -83,7 +83,8 @@ enum { static guint preview_signals [SIGNAL_LAST] = { 0 }; enum { - PROP_IMAGE = 1, + PROP_0, + PROP_IMAGE, PROP_IMAGE_X_ALIGN, PROP_IMAGE_Y_ALIGN, PROP_IMAGE_SCALE, |