Commit 4925b470 authored by ElenaSubbotina's avatar ElenaSubbotina

x2t version up 2.4.466

parent afdaacb2
...@@ -3867,9 +3867,11 @@ public: ...@@ -3867,9 +3867,11 @@ public:
pMoveFromRangeStart->m_oColLast->SetValue(m_oBufferedStream.GetLong()); pMoveFromRangeStart->m_oColLast->SetValue(m_oBufferedStream.GetLong());
} }
else if (c_oSerMoveRange::Date == type) else if (c_oSerMoveRange::Date == type)
{ {
std::wstring strValue = m_oBufferedStream.GetString3(length);
pMoveFromRangeStart->m_oDate.Init(); pMoveFromRangeStart->m_oDate.Init();
pMoveFromRangeStart->m_oDate->SetValue(m_oBufferedStream.GetString3(length)); pMoveFromRangeStart->m_oDate->SetValue(strValue);
} }
else if (c_oSerMoveRange::DisplacedByCustomXml == type) else if (c_oSerMoveRange::DisplacedByCustomXml == type)
{ {
...@@ -3915,9 +3917,11 @@ public: ...@@ -3915,9 +3917,11 @@ public:
pMoveToRangeStart->m_oColLast->SetValue(m_oBufferedStream.GetLong()); pMoveToRangeStart->m_oColLast->SetValue(m_oBufferedStream.GetLong());
} }
else if (c_oSerMoveRange::Date == type) else if (c_oSerMoveRange::Date == type)
{ {
std::wstring strValue = m_oBufferedStream.GetString3(length);
pMoveToRangeStart->m_oDate.Init(); pMoveToRangeStart->m_oDate.Init();
pMoveToRangeStart->m_oDate->SetValue(m_oBufferedStream.GetString3(length)); pMoveToRangeStart->m_oDate->SetValue(strValue);
} }
else if (c_oSerMoveRange::DisplacedByCustomXml == type) else if (c_oSerMoveRange::DisplacedByCustomXml == type)
{ {
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
QT -= core QT -= core
QT -= gui QT -= gui
VERSION = 2.4.465.0 VERSION = 2.4.466.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