mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 02:22:41 +08:00
13 lines
272 B
C++
13 lines
272 B
C++
#include "stdafx.h"
|
|
#include "./../Converter.h"
|
|
|
|
namespace PPTX2DrawingXML
|
|
{
|
|
DWORD Converter::GetTLRestartFromStr(const std::string& str)
|
|
{
|
|
if(str == "never") return 0;
|
|
if(str == "always") return 1;
|
|
if(str == "whenNotActive") return 2;
|
|
return 0;
|
|
}
|
|
} |