diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-18 23:38:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-18 23:38:33 +0900 |
commit | 55ea90e756410fb86e28de6ed7bd5cc7254f0920 (patch) | |
tree | 3e622aa38b3809aca73c726ed0f52537799749cd | |
parent | c650254e1855d383dcafd15d18be20becc3b2253 (diff) | |
download | tellico-55ea90e756410fb86e28de6ed7bd5cc7254f0920.tar.gz tellico-55ea90e756410fb86e28de6ed7bd5cc7254f0920.zip |
Replace auto_ptr
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/translators/xsltimporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/translators/xsltimporter.cpp b/src/translators/xsltimporter.cpp index 65f22e2..d547931 100644 --- a/src/translators/xsltimporter.cpp +++ b/src/translators/xsltimporter.cpp @@ -33,7 +33,7 @@ namespace { static bool isUTF8(const KURL& url_) { // read first line to check encoding - std::auto_ptr<Tellico::FileHandler::FileRef> ref(Tellico::FileHandler::fileRef(url_)); + std::unique_ptr<Tellico::FileHandler::FileRef> ref(Tellico::FileHandler::fileRef(url_)); if(!ref->isValid()) { return false; } |