aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-print.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2007-03-01 22:37:40 +0800
committerTor Lillqvist <tml@src.gnome.org>2007-03-01 22:37:40 +0800
commit0418c66353c393bf557cf64bad425b4762ccc3fc (patch)
tree4424be2fc752d4240ea51c3040da0bb4d73b55ae /e-util/e-print.c
parenteac374389583e7c45db9492b862d75203feba2af (diff)
downloadgsoc2013-evolution-0418c66353c393bf557cf64bad425b4762ccc3fc.tar
gsoc2013-evolution-0418c66353c393bf557cf64bad425b4762ccc3fc.tar.gz
gsoc2013-evolution-0418c66353c393bf557cf64bad425b4762ccc3fc.tar.bz2
gsoc2013-evolution-0418c66353c393bf557cf64bad425b4762ccc3fc.tar.lz
gsoc2013-evolution-0418c66353c393bf557cf64bad425b4762ccc3fc.tar.xz
gsoc2013-evolution-0418c66353c393bf557cf64bad425b4762ccc3fc.tar.zst
gsoc2013-evolution-0418c66353c393bf557cf64bad425b4762ccc3fc.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> * e-print.c (print_dialog_response) (e_print_get_dialog_with_config): 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=33271
Diffstat (limited to 'e-util/e-print.c')
-rw-r--r--e-util/e-print.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/e-util/e-print.c b/e-util/e-print.c
index edec919eac..107f0d2597 100644
--- a/e-util/e-print.c
+++ b/e-util/e-print.c
@@ -100,9 +100,11 @@ e_print_save_settings (GtkPrintSettings *settings)
static void
print_dialog_response(GtkWidget *widget, int resp, gpointer data)
{
+#ifdef G_OS_UNIX /* Just to get it to build on Win32 */
if (resp == GTK_RESPONSE_OK) {
e_print_save_settings (gtk_print_unix_dialog_get_settings(GTK_PRINT_UNIX_DIALOG (widget)));
}
+#endif
}
/* Creates a dialog with the print settings */
@@ -122,10 +124,12 @@ e_print_get_dialog (const char *title, int flags)
GtkWidget *
e_print_get_dialog_with_config (const char *title, int flags, GtkPrintSettings *settings)
{
- GtkWidget *dialog;
+ GtkWidget *dialog = NULL;
+#ifdef G_OS_UNIX /* Just to get it to build on Win32 */
dialog = gtk_print_unix_dialog_new (title, NULL);
gtk_print_unix_dialog_set_settings (GTK_PRINT_UNIX_DIALOG(dialog), settings);
g_signal_connect(dialog, "response", G_CALLBACK(print_dialog_response), NULL);
+#endif
return dialog;
}