From d53340b2253537104abe6f95c8c63cc74487c3ec Mon Sep 17 00:00:00 2001 From: homeboy445 Date: Tue, 28 Sep 2021 13:14:35 +0530 Subject: 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 --- cui/source/dialogs/QrCodeGenDialog.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cui/source') 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"; } } -- cgit