diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 12:27:35 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-30 12:28:53 +0200 |
commit | 67009cf202e2a9bca3ac095870f6d64a47f09157 (patch) | |
tree | 12738ee862e5f2014e12f578c7e5b3481dbea778 /l10ntools/source | |
parent | 3b094090b6f856f3683a97ca66b46df1e79694b2 (diff) |
l10ntools: std::auto_ptr -> std::unique_ptr
Change-Id: I595506b8c6d127abaa8d86bd0ed263edba210bb5
Diffstat (limited to 'l10ntools/source')
-rw-r--r-- | l10ntools/source/helpmerge.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx index 20773de553ac..492f6f7c9a68 100644 --- a/l10ntools/source/helpmerge.cxx +++ b/l10ntools/source/helpmerge.cxx @@ -81,7 +81,7 @@ bool HelpParser::CreatePO( SimpleXMLParser aParser; //TODO: explicit BOM handling? - std::auto_ptr <XMLFile> file ( aParser.Execute( sHelpFile, pXmlFile ) ); + std::unique_ptr <XMLFile> file ( aParser.Execute( sHelpFile, pXmlFile ) ); if(file.get() == NULL) { |