summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/main.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 46d607f..68bc8bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
13-12-29 Cyrille Bagard <nocbos@gmail.com>
+ * src/main.c:
+ Give a proper application name to Gnome.
+
+13-12-29 Cyrille Bagard <nocbos@gmail.com>
+
* configure.ac
* src/analysis/type.h
* src/analysis/types/basic.h
diff --git a/src/main.c b/src/main.c
index 18637ff..ca7be49 100644
--- a/src/main.c
+++ b/src/main.c
@@ -100,14 +100,12 @@ int main(int argc, char **argv)
const char *filename; /* Chemin du dernier projet */
GStudyProject *project; /* Nouveau projet courant */
-
if (argc > 1 && strcmp(argv[1], "--version") == 0)
{
show_version();
return EXIT_SUCCESS;
}
-
config = load_configuration("main", main_params, MPT_COUNT);
set_main_configuration(config);
@@ -120,6 +118,7 @@ int main(int argc, char **argv)
gdk_threads_enter();
/* Initialisation de GTK */
+ g_set_prgname("Chrysalide");
setlocale (LC_ALL, "");
gtk_init(&argc, &argv);