summaryrefslogtreecommitdiff
path: root/shared/taskbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/taskbar.h')
-rw-r--r--shared/taskbar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/taskbar.h b/shared/taskbar.h
index b41734b3..90a76d13 100644
--- a/shared/taskbar.h
+++ b/shared/taskbar.h
@@ -40,7 +40,7 @@ public:
private:
class Pimpl;
- std::auto_ptr<Pimpl> pimpl_;
+ std::unique_ptr<Pimpl> pimpl_;
};
}
bgstack15