Commit 8eecbf5f authored by ElenaSubbotina's avatar ElenaSubbotina

.

parent 9e1773df
...@@ -7414,8 +7414,10 @@ public: ...@@ -7414,8 +7414,10 @@ public:
OOX::Logic::CDate* pDate = static_cast<OOX::Logic::CDate*>(poResult); OOX::Logic::CDate* pDate = static_cast<OOX::Logic::CDate*>(poResult);
if (c_oSerSdt::FullDate == type) if (c_oSerSdt::FullDate == type)
{ {
pDate->m_oFullDate.Init(); std::wstring sVal = m_oBufferedStream.GetString3(length);
pDate->m_oFullDate->SetValue(m_oBufferedStream.GetString3(length));
pDate->m_oFullDate.Init();
pDate->m_oFullDate->SetValue(sVal);
} }
else if (c_oSerSdt::Calendar == type) else if (c_oSerSdt::Calendar == type)
{ {
...@@ -7432,7 +7434,8 @@ public: ...@@ -7432,7 +7434,8 @@ public:
{ {
pDate->m_oLid.Init(); pDate->m_oLid.Init();
pDate->m_oLid->m_oVal.Init(); pDate->m_oLid->m_oVal.Init();
pDate->m_oLid->m_oVal->SetValue(m_oBufferedStream.GetString3(length)); std::wstring sVal = m_oBufferedStream.GetString3(length);
pDate->m_oLid->m_oVal->SetValue(sVal);
} }
else if (c_oSerSdt::StoreMappedDataAs == type) else if (c_oSerSdt::StoreMappedDataAs == type)
{ {
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
QT -= core QT -= core
QT -= gui QT -= gui
VERSION = 2.4.451.0 VERSION = 2.4.453.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