summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-18 23:38:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-18 23:38:33 +0900
commit55ea90e756410fb86e28de6ed7bd5cc7254f0920 (patch)
tree3e622aa38b3809aca73c726ed0f52537799749cd
parentc650254e1855d383dcafd15d18be20becc3b2253 (diff)
downloadtellico-55ea90e756410fb86e28de6ed7bd5cc7254f0920.tar.gz
tellico-55ea90e756410fb86e28de6ed7bd5cc7254f0920.zip
Replace auto_ptr
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/translators/xsltimporter.cpp2
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;
}