Refs #94: Copying column parameter for multiple defined columns.
This commit is contained in:
parent
4b7b5d85c0
commit
e43431c50e
|
@ -93,7 +93,7 @@ namespace LAview {
|
||||||
col_param.nrlines = wlen - 1 - nrlines;
|
col_param.nrlines = wlen - 1 - nrlines;
|
||||||
|
|
||||||
// Bug #94: Parse Multiple defined columns in the tabular/longtable.
|
// Bug #94: Parse Multiple defined columns in the tabular/longtable.
|
||||||
while (count-- > 0) col_params.insert (0, col_param);
|
while (count-- > 0) col_params.insert (0, col_param.copy ());
|
||||||
|
|
||||||
match_info.next ();
|
match_info.next ();
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,7 +107,7 @@ namespace LAview {
|
||||||
col_param.nrlines = wlen - 1 - nrlines;
|
col_param.nrlines = wlen - 1 - nrlines;
|
||||||
|
|
||||||
// Bug #94: Parse Multiple defined columns in the tabular/longtable.
|
// Bug #94: Parse Multiple defined columns in the tabular/longtable.
|
||||||
while (count-- > 0) col_params.insert (0, col_param);
|
while (count-- > 0) col_params.insert (0, col_param.copy ());
|
||||||
|
|
||||||
match_info.next ();
|
match_info.next ();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue