Merge branch 'hotfix-0.1.3' into develop
This commit is contained in:
commit
118cb308a0
|
@ -7,7 +7,7 @@ SET (PROJECT_DESCRIPTION "LaTeX representation in the memory.")
|
|||
|
||||
SET (MAJOR 0)
|
||||
SET (MINOR 1)
|
||||
SET (PATCH 2)
|
||||
SET (PATCH 3)
|
||||
|
||||
LIST (APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/backbone)
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ namespace LAview {
|
|||
col_param.nrlines = wlen - 1 - nrlines;
|
||||
|
||||
// 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 ();
|
||||
}
|
||||
|
|
|
@ -107,7 +107,7 @@ namespace LAview {
|
|||
col_param.nrlines = wlen - 1 - nrlines;
|
||||
|
||||
// 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 ();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue