diff options
Diffstat (limited to 'l10ntools/inc/po.hxx')
-rw-r--r-- | l10ntools/inc/po.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/l10ntools/inc/po.hxx b/l10ntools/inc/po.hxx index e1a584d99311..830db7d9e054 100644 --- a/l10ntools/inc/po.hxx +++ b/l10ntools/inc/po.hxx @@ -11,6 +11,7 @@ #define INCLUDED_L10NTOOLS_INC_PO_HXX #include <fstream> +#include <memory> #include <rtl/string.hxx> #include <boost/noncopyable.hpp> @@ -32,7 +33,7 @@ class PoEntry { private: - GenPoEntry* m_pGenPo; + std::unique_ptr<GenPoEntry> m_pGenPo; bool m_bIsInitialized; public: |