aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/print_dlg.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2008-04-11 23:46:06 +0000
committerStephen Fisher <steve@stephen-fisher.com>2008-04-11 23:46:06 +0000
commit370209587650a42bee74ce08c04c341342192e56 (patch)
treebf3b80181d23891f8c9b74e5a6ead23907bc98d7 /gtk/print_dlg.c
parent8e58ec7085b8868163932996e50ecc7a5d38388e (diff)
Add a cast to fix compilation on Unix.
svn path=/trunk/; revision=24919
Diffstat (limited to 'gtk/print_dlg.c')
-rw-r--r--gtk/print_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/print_dlg.c b/gtk/print_dlg.c
index 85363ffb7d..7d2fdeba19 100644
--- a/gtk/print_dlg.c
+++ b/gtk/print_dlg.c
@@ -821,7 +821,7 @@ open_print_dialog(const char *title, output_action_e action, print_args_t *args)
#else
if(topic_available(HELP_EXPORT_FILE_DIALOG)) {
help_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_HELP);
- g_signal_connect(help_bt, "clicked", G_CALLBACK(topic_cb), HELP_EXPORT_FILE_DIALOG);
+ g_signal_connect(help_bt, "clicked", G_CALLBACK(topic_cb), (gpointer)HELP_EXPORT_FILE_DIALOG);
}
#endif
}