diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-15 20:41:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 12:54:44 +0000 |
commit | a1ceacc17e3f30d5e9c06b3218ad8ec26ca2f1b9 (patch) | |
tree | 56a29f66f75f326a0a677ab1697ce28f1bc9fcbf /vcl/workben | |
parent | 18f41dfaf19d656d290c47d196ef2702e169a522 (diff) |
boost::foo_ptr->std::foo_ptr
Change-Id: I9219619b538b6530a89f5932ac51eb3b62eb396a
Diffstat (limited to 'vcl/workben')
-rw-r--r-- | vcl/workben/vcldemo.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/workben/vcldemo.cxx b/vcl/workben/vcldemo.cxx index 05adec176ff7..f02ac0390b8e 100644 --- a/vcl/workben/vcldemo.cxx +++ b/vcl/workben/vcldemo.cxx @@ -1542,12 +1542,12 @@ public: } DemoWin aMainWin(aRenderer, bThreads); - boost::scoped_ptr<DemoWidgets> aWidgets; + std::unique_ptr<DemoWidgets> xWidgets; aMainWin.SetText("Interactive VCL demo #1"); if (bWidgets) - aWidgets.reset(new DemoWidgets()); + xWidgets.reset(new DemoWidgets()); else aMainWin.Show(); |