Commit 57534244 authored by konovalovsergey's avatar konovalovsergey

fix Bug 32709 - MS Word 2007 считает документ, содержащий таблицу,...

fix Bug 32709 - MS Word 2007 считает документ, содержащий таблицу, поврежденным после редактирования нами
parent a9f95996
...@@ -5798,7 +5798,7 @@ namespace SimpleTypes ...@@ -5798,7 +5798,7 @@ namespace SimpleTypes
textdirectionLrV = 5 textdirectionLrV = 5
}; };
template<ETextDirection eDefValue = textdirectionLr> template<ETextDirection eDefValue = textdirectionTb>
class CTextDirection : public CSimpleType<ETextDirection, eDefValue> class CTextDirection : public CSimpleType<ETextDirection, eDefValue>
{ {
public: public:
...@@ -5821,13 +5821,13 @@ namespace SimpleTypes ...@@ -5821,13 +5821,13 @@ namespace SimpleTypes
{ {
switch(this->m_eValue) switch(this->m_eValue)
{ {
case textdirectionLr : return _T("lr"); case textdirectionLr : return _T("btLr");
case textdirectionLrV : return _T("lrV"); case textdirectionLrV : return _T("tbLrV");
case textdirectionRl : return _T("rl"); case textdirectionRl : return _T("tbRl");
case textdirectionRlV : return _T("rlV"); case textdirectionRlV : return _T("tbRlV");
case textdirectionTb : return _T("tb"); case textdirectionTb : return _T("lrTb");
case textdirectionTbV : return _T("tbV"); case textdirectionTbV : return _T("lrTbV");
default : return _T("lr"); default : return _T("lrTb");
} }
} }
......
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