diff options
author | Jan-Michael Brummer <jan.brummer@tabos.org> | 2019-01-05 13:19:26 +0100 |
---|---|---|
committer | Michael Catanzaro <mcatanzaro@posteo.net> | 2019-03-17 01:00:28 +0000 |
commit | 8061c1929caf99bce9a5f13df5d6d644baa01abd (patch) | |
tree | c34833e24ca0d80fecd68c7cdd5f574d5304fcd0 /src/ephy-main.c | |
parent | c143681d5cf17424a12beea1ab8dda0bc2ec201c (diff) | |
download | epiphany-8061c1929caf99bce9a5f13df5d6d644baa01abd.tar.gz |
Enable co-existing of Epiphany Tech Preview with stable version
Fixes: https://gitlab.gnome.org/GNOME/epiphany/issues/20
Diffstat (limited to 'src/ephy-main.c')
-rw-r--r-- | src/ephy-main.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c index 04ed3fe12..ec895b574 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -29,7 +29,6 @@ #include "ephy-settings.h" #include "ephy-shell.h" #include "ephy-string.h" -#include "ephy-vcs-version.h" #include "ephy-web-app-utils.h" #include <errno.h> @@ -100,7 +99,7 @@ option_version_cb (const gchar *option_name, gpointer data, GError **error) { - g_print ("%s %s\n", _("Web"), VCSVERSION); + g_print ("%s %s\n", _("Web"), VERSION); exit (EXIT_SUCCESS); return FALSE; @@ -404,7 +403,7 @@ main (int argc, g_set_prgname ("epiphany"); g_set_application_name (_("Web")); - gtk_window_set_default_icon_name ("org.gnome.Epiphany"); + gtk_window_set_default_icon_name (APPLICATION_ID); } hdy_init (&argc, &argv); |