summaryrefslogtreecommitdiff
path: root/launcher
diff options
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2013-01-15 23:46:58 +0100
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2013-01-15 23:46:58 +0100
commit9c9e54da19ff9679b0743c9eaadd4fb680a33a58 (patch)
tree6fc92efbbc001dfe7b77f24120cb431f140db33f /launcher
parentfca184b46f3e2c18f072f2801d3910a01d2aa265 (diff)
SwitcherModel: use std::shared_ptr instead of boost
(bzr r3036.2.3)
Diffstat (limited to 'launcher')
-rw-r--r--launcher/SwitcherModel.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/launcher/SwitcherModel.h b/launcher/SwitcherModel.h
index 2ab0fa040..86e644cd5 100644
--- a/launcher/SwitcherModel.h
+++ b/launcher/SwitcherModel.h
@@ -26,8 +26,6 @@
#include "LauncherModel.h"
#include "unity-shared/Introspectable.h"
-
-#include <boost/shared_ptr.hpp>
#include <sigc++/sigc++.h>
namespace unity
@@ -53,7 +51,7 @@ class SwitcherModel : public debug::Introspectable, public sigc::trackable
{
public:
- typedef boost::shared_ptr<SwitcherModel> Ptr;
+ typedef std::shared_ptr<SwitcherModel> Ptr;
typedef std::vector<launcher::AbstractLauncherIcon::Ptr> Applications;
typedef Applications::iterator iterator;