Merge branch 'hotfix-0.1.3' into develop

develop
Kolan Sh 2014-12-12 13:46:23 +06:30
commit 118cb308a0
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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 ();
}

View File

@ -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 ();
}