mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 02:48:12 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@52230 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
committed by
Alexander Trofimov
parent
0b39c5362a
commit
27111bbd45
16
ASCOfficePPTXFile/ConverterSimple/Source/TLPresetClass.cpp
Normal file
16
ASCOfficePPTXFile/ConverterSimple/Source/TLPresetClass.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
#include "stdafx.h"
|
||||
#include "./../Converter.h"
|
||||
|
||||
namespace PPTX2EditorSimple
|
||||
{
|
||||
DWORD Converter::GetTLPresetClassFromStr(const CString& str)
|
||||
{
|
||||
if (str == _T("entr")) return 1;
|
||||
if (str == _T("exit")) return 2;
|
||||
if (str == _T("emph")) return 3;
|
||||
if (str == _T("path")) return 4;
|
||||
if (str == _T("verb")) return 5;
|
||||
if (str == _T("mediacall")) return 6;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user