1
0
mirror of https://git.code.sf.net/p/zint/code synced 2025-12-17 18:07:02 +00:00
This commit is contained in:
Rodrigo Torres
2017-09-10 12:03:09 -03:00
committed by Robin Stuart
parent 1882d76b70
commit 4963a772db
45 changed files with 334 additions and 351 deletions

View File

@@ -75,7 +75,6 @@ QString SequenceWindow::apply_format(QString raw_number)
QString adjusted, reversed;
QString format;
int format_len, input_len, i, inpos;
char format_char;
QChar format_qchar;
format = linFormat->text();
@@ -86,7 +85,7 @@ QString SequenceWindow::apply_format(QString raw_number)
for(i = format_len; i > 0; i--) {
format_qchar = format[i - 1];
format_char = format_qchar.toLatin1();
char format_char = format_qchar.toLatin1();
switch(format_char) {
case '#':
if (inpos > 0) {