diff options
| author | Gustavo Noronha Silva <gns@gnome.org> | 2009-11-12 21:09:06 +0800 |
|---|---|---|
| committer | Xan Lopez <xan@gnome.org> | 2009-12-16 18:32:52 +0800 |
| commit | f0e7cc5af163c6ed16c4450115b61bfa0822b80a (patch) | |
| tree | d4c273e0c322b75421ddb0ef7c1aedfacdeabbb3 | |
| parent | 74fa009fb5ff0cd66096531c0a16ef567dafab5a (diff) | |
| download | gsoc2013-epiphany-f0e7cc5af163c6ed16c4450115b61bfa0822b80a.tar.gz gsoc2013-epiphany-f0e7cc5af163c6ed16c4450115b61bfa0822b80a.tar.zst gsoc2013-epiphany-f0e7cc5af163c6ed16c4450115b61bfa0822b80a.zip | |
Set program name to match the desktop file
| -rw-r--r-- | src/ephy-main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ephy-main.c b/src/ephy-main.c index 5daca6fc6..ac6251b84 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -494,6 +494,9 @@ main (int argc, */ LIBXML_TEST_VERSION; + /* sets name to help matching with the .desktop file */ + g_set_prgname ("epiphany"); + /* If we're given -remote arguments, translate them */ if (argc >= 2 && strcmp (argv[1], "-remote") == 0) |
