Commit 23a4f86f authored by Elen.Subbotina's avatar Elen.Subbotina Committed by Alexander Trofimov
parent 6341f4d8
...@@ -228,7 +228,7 @@ ...@@ -228,7 +228,7 @@
> >
<Tool <Tool
Name="VCPreBuildEventTool" Name="VCPreBuildEventTool"
CommandLine="..\Redist\VersionControl.exe &quot;$(ProjectDir)\version.h&quot;" CommandLine="..\..\Redist\VersionControl.exe &quot;..\version.h&quot;"
ExcludedFromBuild="false" ExcludedFromBuild="false"
/> />
<Tool <Tool
......
...@@ -107,17 +107,17 @@ const wchar_t * list_header::name = L"list-header"; ...@@ -107,17 +107,17 @@ const wchar_t * list_header::name = L"list-header";
void list_header::docx_convert(oox::docx_conversion_context & Context) void list_header::docx_convert(oox::docx_conversion_context & Context)
{ {
bool restart = false;
//Context.start_list_item(restart);
// //
std::wstring s = Context.current_list_style();
Context.end_list();
BOOST_FOREACH(const office_element_ptr & elm, content_) BOOST_FOREACH(const office_element_ptr & elm, content_)
{ {
elm->docx_convert(Context); elm->docx_convert(Context);
} }
//Context.end_list_item(); Context.start_list(s, true);
} }
void list_header::pptx_convert(oox::pptx_conversion_context & Context) void list_header::pptx_convert(oox::pptx_conversion_context & Context)
{ {
......
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
//1 //1
//0 //0
//1 //1
//212 //213
#define INTVER 1,0,1,212 #define INTVER 1,0,1,213
#define STRVER "1,0,1,212\0" #define STRVER "1,0,1,213\0"
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