mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Remove deprecated bctbx_set_default_encoding
This commit is contained in:
parent
9b64b98a28
commit
61a33b539a
2 changed files with 15 additions and 2 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -13,7 +13,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Added
|
||||
- Screen Sharing
|
||||
|
||||
## 5.2.4 - undefined
|
||||
## 5.2.6 - 2024-07-22
|
||||
|
||||
### Fixed
|
||||
- Crash on Windows when using non-UTF8 characters in system username.
|
||||
- Update SDK to 5.3.72
|
||||
|
||||
## 5.2.5 - 2024-07-10
|
||||
|
||||
### Fixed
|
||||
- Case sensitive issue with sip attributes on LDAP search.
|
||||
- Update SDK to 5.3.68
|
||||
|
||||
## 5.2.4 - 2024-04-11
|
||||
|
||||
### Fixed
|
||||
- File permission after auto downloading a file.
|
||||
|
|
|
|||
|
|
@ -307,7 +307,8 @@ App::App(int &argc, char *argv[])
|
|||
|
||||
// Use UTF-8 for internals. Linphone uses UTF-8 so there will be no loss on
|
||||
// data with less precise encodings. Qt will do the rest.
|
||||
bctbx_set_default_encoding(Constants::LinphoneLocaleEncoding);
|
||||
// bctbx_set_default_encoding(Constants::LinphoneLocaleEncoding);
|
||||
setlocale(LC_CTYPE, ".UTF8");
|
||||
|
||||
createParser();
|
||||
mParser->parse(this->arguments());
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue