diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-10-04 15:54:30 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-10-04 15:54:30 +0200 |
| commit | 2855642dd16cea260f3b32351f0529328a0bcb15 (patch) | |
| tree | a375d2c57e1089ba54746371674e48c9216bb8e4 /src/administration_reader.cpp | |
| parent | b8e049f02a16dc8398b2a954b561c84beda423c7 (diff) | |
namespacing locale, config, file_templates
Diffstat (limited to 'src/administration_reader.cpp')
| -rw-r--r-- | src/administration_reader.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/administration_reader.cpp b/src/administration_reader.cpp index e845e7c..801941b 100644 --- a/src/administration_reader.cpp +++ b/src/administration_reader.cpp @@ -30,7 +30,7 @@ bool administration_reader_open_new() { - // @localize + // @locale::get char const * lFilterPatterns[1] = { "*.openbook" }; char* save_path = tinyfd_saveFileDialog("Select destination", NULL, 1, lFilterPatterns, NULL); @@ -43,7 +43,7 @@ bool administration_reader_open_new() bool administration_reader_save_new() { - // @localize + // @locale::get char const * lFilterPatterns[1] = { "*.openbook" }; char* save_path = tinyfd_saveFileDialog("Select destination", NULL, 1, lFilterPatterns, NULL); @@ -58,7 +58,7 @@ bool administration_reader_save_new() bool administration_reader_open_existing(char* file_path) { if (file_path == NULL) { - // @localize + // @locale::get char const * lFilterPatterns[1] = { "*.openbook" }; file_path = tinyfd_openFileDialog("Select save file", NULL, 1, lFilterPatterns, NULL, 0); |
