From 4e1f4b18abdec1658e835a77a9de8be87c965142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mayer?= Date: Fri, 5 Aug 2005 20:59:08 +0000 Subject: More char -> const char warning fixes. Removed (very few) casts that only change the warning message but don't remove it (with gcc-4). svn path=/trunk/; revision=15227 --- gtk/print_dlg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/print_dlg.c') diff --git a/gtk/print_dlg.c b/gtk/print_dlg.c index 390997d765..31c2395fe4 100644 --- a/gtk/print_dlg.c +++ b/gtk/print_dlg.c @@ -72,7 +72,7 @@ typedef enum { */ static GtkWidget * -open_print_dialog(char *title, output_action_e action, print_args_t *args); +open_print_dialog(const char *title, output_action_e action, print_args_t *args); static void print_cmd_toggle_dest(GtkWidget *widget, gpointer data); static void print_cmd_toggle_detail(GtkWidget *widget, gpointer data); static void print_ok_cb(GtkWidget *ok_bt, gpointer parent_w); @@ -388,7 +388,7 @@ print_browse_file_cb(GtkWidget *file_bt, GtkWidget *file_te) /* Open the print dialog */ static GtkWidget * -open_print_dialog(char *title, output_action_e action, print_args_t *args) +open_print_dialog(const char *title, output_action_e action, print_args_t *args) { #if GTK_MAJOR_VERSION < 2 GtkAccelGroup *accel_group; -- cgit v1.2.3