refactor: rename dc_qr -> qr

This commit is contained in:
dignifiedquire
2019-08-18 00:40:08 +02:00
committed by holger krekel
parent 886262539a
commit d47a693611
5 changed files with 16 additions and 16 deletions

View File

@@ -991,7 +991,7 @@ pub unsafe extern "C" fn dc_check_qr(
assert!(!qr.is_null());
let context = &*context;
let lot = dc_qr::dc_check_qr(context, as_str(qr));
let lot = qr::check_qr(context, as_str(qr));
Box::into_raw(Box::new(lot))
}