summaryrefslogtreecommitdiffstats
path: root/src/bookwidget.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-18 23:26:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-18 23:33:46 +0900
commit5809bef5fab96182a781fcad03a0ece1effffd72 (patch)
treedbde5239e96a94fe88630dc835ec9bef3c3b3564 /src/bookwidget.h
parente47baa8f120042143820c6e81fb7eeffa03d7974 (diff)
downloadkbookreader-5809bef5fab96182a781fcad03a0ece1effffd72.tar.gz
kbookreader-5809bef5fab96182a781fcad03a0ece1effffd72.zip
Replace auto_ptr
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/bookwidget.h')
-rw-r--r--src/bookwidget.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bookwidget.h b/src/bookwidget.h
index d2a41dc..2e4cb74 100644
--- a/src/bookwidget.h
+++ b/src/bookwidget.h
@@ -116,10 +116,10 @@ private:
TQTimer m_timer;
TQStringList m_encodings;
int m_encoding;
- std::auto_ptr<Renderer> m_renderer;
- std::auto_ptr<TQTextStream> m_stream;
- std::auto_ptr<TQStringList> m_textLines;
- std::auto_ptr<KProgressDialog> m_progressDlg;
+ std::unique_ptr<Renderer> m_renderer;
+ std::unique_ptr<TQTextStream> m_stream;
+ std::unique_ptr<TQStringList> m_textLines;
+ std::unique_ptr<KProgressDialog> m_progressDlg;
Bookmarks m_bookmarks;
};