2000-04-23 JP Rosevear <jpr@arcavia.com>

* gview.c (view): Constify file parameter to match prototype and
	fix build problem.
This commit is contained in:
jpr 2000-04-24 18:56:53 +00:00
parent b08cf9dc64
commit 3751f88716
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-04-23 JP Rosevear <jpr@arcavia.com>
* gview.c (view): Constify file parameter to match prototype and fix
build problem.
2000-04-18 Pavel Machek <pavel@artax.karlin.mff.cuni.cz>
* gcmd.c (gnome_open_terminal_with_cmd): Allow translating of

View File

@ -351,7 +351,7 @@ quit_view (GtkWidget *widget, GdkEvent *event, WView *view)
}
int
view (char *_command, char *_file, int *move_dir_p, int start_line)
view (char *_command, const char *_file, int *move_dir_p, int start_line)
{
Dlg_head *our_dlg;
GtkWidget *toplevel, *status, *scrollbar, *hbox;