aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/printing/e-contact-print.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-05-09 23:02:46 +0800
committerJeremy Katz <katzj@src.gnome.org>2003-05-09 23:02:46 +0800
commitf6038b72aa561d2c71369143d89d6467db567a07 (patch)
tree6fb0de174fe0ef58c3229189abff57fcef3366db /addressbook/printing/e-contact-print.c
parent7b20b772d2460427ceefa7c463ed8f874762f57b (diff)
downloadgsoc2013-evolution-f6038b72aa561d2c71369143d89d6467db567a07.tar
gsoc2013-evolution-f6038b72aa561d2c71369143d89d6467db567a07.tar.gz
gsoc2013-evolution-f6038b72aa561d2c71369143d89d6467db567a07.tar.bz2
gsoc2013-evolution-f6038b72aa561d2c71369143d89d6467db567a07.tar.lz
gsoc2013-evolution-f6038b72aa561d2c71369143d89d6467db567a07.tar.xz
gsoc2013-evolution-f6038b72aa561d2c71369143d89d6467db567a07.tar.zst
gsoc2013-evolution-f6038b72aa561d2c71369143d89d6467db567a07.zip
Use glib macro to case from pointer to int.
2003-05-09 Jeremy Katz <katzj@redhat.com> * printing/e-contact-print.c (e_contact_print_response): Use glib macro to case from pointer to int. * printing/e-contact-print-envelope.c: Add missing #include. * gui/component/select-names/e-select-names-completion.c (e_select_names_completion_start_query): Use E_SELECT_NAMES_COMPLETION to avoid warning svn path=/trunk/; revision=21138
Diffstat (limited to 'addressbook/printing/e-contact-print.c')
-rw-r--r--addressbook/printing/e-contact-print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/printing/e-contact-print.c b/addressbook/printing/e-contact-print.c
index e3f79099bb..04a3523c56 100644
--- a/addressbook/printing/e-contact-print.c
+++ b/addressbook/printing/e-contact-print.c
@@ -1014,7 +1014,7 @@ e_contact_print_response(GtkWidget *dialog, gint response_id, gpointer data)
GnomePrintJob *master;
GnomePrintConfig *config;
GnomePrintContext *pc;
- gboolean uses_book = (gint) g_object_get_data(G_OBJECT(dialog), "uses_book");
+ gboolean uses_book = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(dialog), "uses_book"));
EBook *book = NULL;
char *query = NULL;
ECard *card = NULL;