aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html-print.h
diff options
context:
space:
mode:
Diffstat (limited to 'mail/em-format-html-print.h')
-rw-r--r--mail/em-format-html-print.h19
1 files changed, 3 insertions, 16 deletions
diff --git a/mail/em-format-html-print.h b/mail/em-format-html-print.h
index 5f08b6ef82..d9fe1ff6d4 100644
--- a/mail/em-format-html-print.h
+++ b/mail/em-format-html-print.h
@@ -45,20 +45,12 @@ G_BEGIN_DECLS
typedef struct _EMFormatHTMLPrint EMFormatHTMLPrint;
typedef struct _EMFormatHTMLPrintClass EMFormatHTMLPrintClass;
+typedef struct _EMFormatHTMLPrintPrivate EMFormatHTMLPrintPrivate;
struct _EMFormatHTMLPrint {
EMFormatHTML parent;
-
- /* Used to realize the gtkhtml in a toplevel. */
- GtkWidget *window;
-
- /* Used for print_message. */
- EMFormatHTML *source;
-
- GtkPrintOperationAction action;
+ EMFormatHTMLPrintPrivate *priv;
gchar *export_filename;
-
- gboolean async;
};
struct _EMFormatHTMLPrintClass {
@@ -67,12 +59,7 @@ struct _EMFormatHTMLPrintClass {
GType em_format_html_print_get_type (void);
EMFormatHTMLPrint *
- em_format_html_print_new (EMFormatHTML *source,
- GtkPrintOperationAction action);
-void em_format_html_print_message (EMFormatHTMLPrint *efhp,
- CamelMimeMessage *message,
- CamelFolder *folder,
- const gchar *uid);
+ em_format_html_print_new (EMFormatHTML *source);
G_END_DECLS