diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-22 14:29:20 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-22 14:29:20 +0200 |
commit | 06156b3034353cc1d62b4f825b1fcad799e944eb (patch) | |
tree | 26f7476ee50610853ac8fbf0f54c420cfb7cfc99 /src/app.c | |
parent | d3ab1ae8b92433ec711c1396838b32f2f9f35d7b (diff) |
Lang: Began replacing UI strings with IDs
IssueID #192
Diffstat (limited to 'src/app.c')
-rw-r--r-- | src/app.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -507,6 +507,7 @@ static void communicateWithRunningInstance_App_(iApp *d, iProcessId instance, | |||
507 | 507 | ||
508 | static void init_App_(iApp *d, int argc, char **argv) { | 508 | static 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 | ||