aboutsummaryrefslogtreecommitdiff
path: root/src/ScreenPlacement.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/ScreenPlacement.hh')
-rw-r--r--src/ScreenPlacement.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ScreenPlacement.hh b/src/ScreenPlacement.hh
index 05db90d..ceec2d2 100644
--- a/src/ScreenPlacement.hh
+++ b/src/ScreenPlacement.hh
@@ -80,8 +80,8 @@ private:
80 FbTk::Resource<ColumnDirection> m_col_direction; ///< column direction resource 80 FbTk::Resource<ColumnDirection> m_col_direction; ///< column direction resource
81 FbTk::Resource<PlacementPolicy> m_placement_policy; ///< placement policy resource 81 FbTk::Resource<PlacementPolicy> m_placement_policy; ///< placement policy resource
82 PlacementPolicy m_old_policy; ///< holds old policy, used to determine if resources has changed 82 PlacementPolicy m_old_policy; ///< holds old policy, used to determine if resources has changed
83 std::auto_ptr<PlacementStrategy> m_strategy; ///< main strategy 83 std::unique_ptr<PlacementStrategy> m_strategy; ///< main strategy
84 std::auto_ptr<PlacementStrategy> m_fallback_strategy; ///< a fallback strategy if the main strategy fails 84 std::unique_ptr<PlacementStrategy> m_fallback_strategy; ///< a fallback strategy if the main strategy fails
85 BScreen& m_screen; 85 BScreen& m_screen;
86}; 86};
87 87