From 52c9f6257d86e2882434497acf3d8243394fdb8f Mon Sep 17 00:00:00 2001 From: Mathias Gumz Date: Sun, 11 Sep 2016 11:21:00 +0200 Subject: std::auto_ptr to std::unique_ptr --- src/CommandDialog.cc | 5 ++--- src/main.cc | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/CommandDialog.cc b/src/CommandDialog.cc index e777390..b8cd838 100644 --- a/src/CommandDialog.cc +++ b/src/CommandDialog.cc @@ -35,7 +35,6 @@ using std::string; using std::vector; -using std::auto_ptr; using std::less; using std::out_of_range; @@ -45,9 +44,9 @@ CommandDialog::CommandDialog(BScreen &screen, const string &title, m_precommand(precommand) { } void CommandDialog::exec(const std::string &text){ - + // create Command from line - auto_ptr > cmd(FbTk::CommandParser::instance().parse(m_precommand + text)); + std::unique_ptr > cmd(FbTk::CommandParser::instance().parse(m_precommand + text)); if (cmd.get()) cmd->execute(); // post execute diff --git a/src/main.cc b/src/main.cc index 3cc728d..574020a 100644 --- a/src/main.cc +++ b/src/main.cc @@ -59,7 +59,6 @@ using std::string; using std::ostream; using std::ofstream; using std::streambuf; -using std::auto_ptr; using std::out_of_range; using std::runtime_error; using std::bad_cast; @@ -68,7 +67,7 @@ using std::exception; namespace { -auto_ptr fluxbox; +std::unique_ptr fluxbox; void handleSignal(int signum) { -- cgit v0.11.2