diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-06-15 20:01:53 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-06-15 20:01:53 +0800 |
commit | 5a927d2793acbd7ca212812048e41891cda8a6e9 (patch) | |
tree | c1d9fe682c7af65fda89ab591e7e9b729ac0596a /embed/ephy-embed.h | |
parent | fa31654eac12411d58ab603924953410c53e1426 (diff) | |
download | gsoc2013-epiphany-5a927d2793acbd7ca212812048e41891cda8a6e9.tar gsoc2013-epiphany-5a927d2793acbd7ca212812048e41891cda8a6e9.tar.gz gsoc2013-epiphany-5a927d2793acbd7ca212812048e41891cda8a6e9.tar.bz2 gsoc2013-epiphany-5a927d2793acbd7ca212812048e41891cda8a6e9.tar.lz gsoc2013-epiphany-5a927d2793acbd7ca212812048e41891cda8a6e9.tar.xz gsoc2013-epiphany-5a927d2793acbd7ca212812048e41891cda8a6e9.tar.zst gsoc2013-epiphany-5a927d2793acbd7ca212812048e41891cda8a6e9.zip |
Convert dialog to metric units and default paper to A4. Fixes #112619
2003-06-15 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/MozillaPrivate.cpp: (MozillaCollatePrintSettings):
* embed/ephy-embed.h:
* embed/print-dialog.c: (print_dialog_init), (print_free_info),
(print_get_info):
* data/epiphany.schemas.in:
* data/glade/print.glade:
Convert dialog to metric units and default paper to A4. Fixes #112619
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r-- | embed/ephy-embed.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index c4cac0aef..a80d11d80 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -108,11 +108,11 @@ typedef struct gboolean print_to_file; gchar *printer; gchar *file; - gint paper; - gdouble top_margin; - gdouble bottom_margin; - gdouble left_margin; - gdouble right_margin; + gchar *paper; + gint top_margin; + gint bottom_margin; + gint left_margin; + gint right_margin; gint pages; gint from_page; gint to_page; |