mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
Fix crash with 2+ emf inside wmf
This commit is contained in:
@ -38,7 +38,7 @@
|
||||
#include <memory>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning (disable: 4100 4189)
|
||||
#pragma warning (disable: 4100 4189)
|
||||
#endif
|
||||
|
||||
#include "../../common/StringBuilder.h"
|
||||
@ -52,13 +52,13 @@ namespace XmlUtils
|
||||
class KERNEL_DECL CXmlWriter
|
||||
{
|
||||
private:
|
||||
class Impl;
|
||||
std::shared_ptr<Impl> impl_;
|
||||
|
||||
class Impl;
|
||||
std::shared_ptr<Impl> impl_;
|
||||
|
||||
public:
|
||||
|
||||
CXmlWriter();
|
||||
~CXmlWriter();
|
||||
~CXmlWriter();
|
||||
|
||||
std::wstring GetXmlString();
|
||||
void SetXmlString(const std::wstring& strValue);
|
||||
|
||||
Reference in New Issue
Block a user