Commit dfe4541f authored by ElenaSubbotina's avatar ElenaSubbotina

.

parent 3fa3a52c
...@@ -201,8 +201,8 @@ public: ...@@ -201,8 +201,8 @@ public:
virtual void visit(const table_table_row& val) virtual void visit(const table_table_row& val)
{ {
unsigned int repeated = val.table_table_row_attlist_.table_number_rows_repeated_; unsigned int repeated = val.attlist_.table_number_rows_repeated_;
std::wstring defaultCellStyle = val.table_table_row_attlist_.table_default_cell_style_name_.get_value_or(L""); std::wstring defaultCellStyle = val.attlist_.table_default_cell_style_name_.get_value_or(L"");
if (visit_rows(repeated, defaultCellStyle)) if (visit_rows(repeated, defaultCellStyle))
{ {
...@@ -212,7 +212,7 @@ public: ...@@ -212,7 +212,7 @@ public:
virtual void visit(const table_table_cell& val) virtual void visit(const table_table_cell& val)
{ {
unsigned int repeated = val.table_table_cell_attlist_.table_number_columns_repeated_; unsigned int repeated = val.attlist_.table_number_columns_repeated_;
std::wstring defaultColumnStyle, defaultRowStyle; std::wstring defaultColumnStyle, defaultRowStyle;
if (visit_cells(repeated, defaultColumnStyle, defaultRowStyle)) if (visit_cells(repeated, defaultColumnStyle, defaultRowStyle))
{ {
...@@ -224,7 +224,7 @@ public: ...@@ -224,7 +224,7 @@ public:
virtual void visit(const table_covered_table_cell& val) virtual void visit(const table_covered_table_cell& val)
{ {
unsigned int repeated = val.table_table_cell_attlist_.table_number_columns_repeated_; unsigned int repeated = val.attlist_.table_number_columns_repeated_;
std::wstring defaultColumnStyle, defaultRowStyle; std::wstring defaultColumnStyle, defaultRowStyle;
if ( repeated <2) if ( repeated <2)
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
QT -= core QT -= core
QT -= gui QT -= gui
VERSION = 2.4.471.0 VERSION = 2.4.472.0
DEFINES += INTVER=$$VERSION DEFINES += INTVER=$$VERSION
TARGET = x2t TARGET = x2t
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment