diff options
author | Diego Escalante Urrelo <diegoe@svn.gnome.org> | 2007-01-09 08:49:45 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-01-09 08:49:45 +0800 |
commit | f6b01d969273f407b0fdc623aa6acc1986491512 (patch) | |
tree | 9572875e966c498e2f7468b4ff42da0aef75ce5f /lib | |
parent | fc051e29f9dd21db6254ce75f17c97a4012bcf03 (diff) | |
download | gsoc2013-epiphany-f6b01d969273f407b0fdc623aa6acc1986491512.tar.gz gsoc2013-epiphany-f6b01d969273f407b0fdc623aa6acc1986491512.tar.zst gsoc2013-epiphany-f6b01d969273f407b0fdc623aa6acc1986491512.zip |
Opens images in a new browser window if EOG is not found. Bug #167595.
2007-01-09 Diego Escalante Urrelo <diegoe@svn.gnome.org>
* src/popup-commands.c:
* lib/ephy-file-helpers.c:
Opens images in a new browser window if EOG is not found. Bug #167595.
Patch by Björn Lindqvist.
svn path=/trunk/; revision=6811
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-file-helpers.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index 9bc6c04dc..1b30b4cab 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -1,3 +1,4 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright © 2002 Jorn Baayen * Copyright © 2003, 2004 Marco Pesenti Gritti @@ -1007,10 +1008,7 @@ ephy_file_launch_handler (const char *mime_type, gnome_vfs_mime_application_free (app); } else - { - /* FIXME: warn user? */ - g_warning ("No handler for found or file type is unsafe!\n"); - } + ret = FALSE; g_free (canonical); |