diff options
author | Tor Lillqvist <tml@novell.com> | 2007-03-01 22:37:05 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2007-03-01 22:37:05 +0800 |
commit | eac374389583e7c45db9492b862d75203feba2af (patch) | |
tree | 74797c25a861b429fb60d89cfdcc6294de4756fa /addressbook/gui | |
parent | dfb8c61df838c14a311f218a35390e9fae7735fc (diff) | |
download | gsoc2013-evolution-eac374389583e7c45db9492b862d75203feba2af.tar gsoc2013-evolution-eac374389583e7c45db9492b862d75203feba2af.tar.gz gsoc2013-evolution-eac374389583e7c45db9492b862d75203feba2af.tar.bz2 gsoc2013-evolution-eac374389583e7c45db9492b862d75203feba2af.tar.lz gsoc2013-evolution-eac374389583e7c45db9492b862d75203feba2af.tar.xz gsoc2013-evolution-eac374389583e7c45db9492b862d75203feba2af.tar.zst gsoc2013-evolution-eac374389583e7c45db9492b862d75203feba2af.zip |
Bypass the body of these functions on non-G_OS_UNIX for now as they use
2007-03-01 Tor Lillqvist <tml@novell.com>
* gui/widgets/e-addressbook-view.c (e_contact_print_button):
* printing/e-contact-print.c (e_contact_print_response):
Bypass the body of these functions on non-G_OS_UNIX for now as
they use gtk_print_unix_dialog_get_settings(). Gtk printing on
Win32 needs work.
svn path=/trunk/; revision=33270
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index a94547bb0c..630d5c6e48 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -1720,6 +1720,7 @@ e_contact_print_destroy(gpointer data, GObject *where_object_was) static void e_contact_print_button(GtkDialog *dialog, gint response, gpointer data) { +#ifdef G_OS_UNIX /* Just to get it to build on Win32 */ GtkWidget *preview; GtkPrintOperation *print; GtkPrintSettings *settings; @@ -1748,6 +1749,9 @@ e_contact_print_button(GtkDialog *dialog, gint response, gpointer data) gtk_widget_destroy(dialog); g_object_unref (print); +#else + g_warning ("Not implemented currently on Windows"); +#endif } static void |