Kaydet (Commit) 62824a22 authored tarafından Miklos Vajna's avatar Miklos Vajna

writerfilter: use std::unique_ptr<> in FontTable

Change-Id: I8dce4e71c53526605d83710012133784a5cbd7ba
üst 95aad95f
......@@ -49,7 +49,6 @@ FontTable::FontTable()
FontTable::~FontTable()
{
delete m_pImpl;
}
void FontTable::lcl_attribute(Id Name, Value & val)
......
......@@ -56,7 +56,7 @@ struct FontEntry
class FontTable : public LoggedProperties, public LoggedTable
/*,public BinaryObj*/, public LoggedStream
{
FontTable_Impl *m_pImpl;
std::unique_ptr<FontTable_Impl> m_pImpl;
public:
FontTable();
......
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