summaryrefslogtreecommitdiff
path: root/src/app.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 14:29:20 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 14:29:20 +0200
commit06156b3034353cc1d62b4f825b1fcad799e944eb (patch)
tree26f7476ee50610853ac8fbf0f54c420cfb7cfc99 /src/app.c
parentd3ab1ae8b92433ec711c1396838b32f2f9f35d7b (diff)
Lang: Began replacing UI strings with IDs
IssueID #192
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app.c b/src/app.c
index 2bf2ad4a..4789c62b 100644
--- a/src/app.c
+++ b/src/app.c
@@ -507,6 +507,7 @@ static void communicateWithRunningInstance_App_(iApp *d, iProcessId instance,
507 507
508static void init_App_(iApp *d, int argc, char **argv) { 508static void init_App_(iApp *d, int argc, char **argv) {
509 init_CommandLine(&d->args, argc, argv); 509 init_CommandLine(&d->args, argc, argv);
510 init_Lang();
510 /* Where was the app started from? We ask SDL first because the command line alone is 511 /* Where was the app started from? We ask SDL first because the command line alone is
511 not a reliable source of this information, particularly when it comes to different 512 not a reliable source of this information, particularly when it comes to different
512 operating systems. */ { 513 operating systems. */ {
@@ -715,6 +716,7 @@ static void deinit_App(iApp *d) {
715 deinit_Ipc(); 716 deinit_Ipc();
716 deinit_SortedArray(&d->tickers); 717 deinit_SortedArray(&d->tickers);
717 deinit_Periodic(&d->periodic); 718 deinit_Periodic(&d->periodic);
719 deinit_Lang();
718 iRecycle(); 720 iRecycle();
719} 721}
720 722