diff options
author | homeboy445 <akshitsan13@gmail.com> | 2021-09-28 13:14:35 +0530 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2021-10-30 18:56:48 +0200 |
commit | d53340b2253537104abe6f95c8c63cc74487c3ec (patch) | |
tree | f9d166120aec7d714d6d3ca1287ed03708c73bad /cui | |
parent | 27d96bfaea5f7967a11dc3a7e2bc9d88dd6f5666 (diff) |
Switch to a newer version of ZXing library
Change-Id: Ib2b919bb7545f05631aed2e6176a97aeb866ee84
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122772
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/QrCodeGenDialog.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/QrCodeGenDialog.cxx b/cui/source/dialogs/QrCodeGenDialog.cxx index 271d14999cbf..fad04c944ee0 100644 --- a/cui/source/dialogs/QrCodeGenDialog.cxx +++ b/cui/source/dialogs/QrCodeGenDialog.cxx @@ -105,9 +105,9 @@ std::string GetBarCodeType(const int& type) switch (type) { case 1: - return "CODE_128"; + return "Code128"; default: - return "QR_CODE"; + return "QRCode"; } } |