From 5809bef5fab96182a781fcad03a0ece1effffd72 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 18 Jan 2024 23:26:41 +0900 Subject: Replace auto_ptr Signed-off-by: Michele Calgaro --- src/bookwidget.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/bookwidget.h') 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 m_renderer; - std::auto_ptr m_stream; - std::auto_ptr m_textLines; - std::auto_ptr m_progressDlg; + std::unique_ptr m_renderer; + std::unique_ptr m_stream; + std::unique_ptr m_textLines; + std::unique_ptr m_progressDlg; Bookmarks m_bookmarks; }; -- cgit v1.2.1