aboutsummaryrefslogtreecommitdiff
path: root/src/PlacementStrategy.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/PlacementStrategy.hh')
-rw-r--r--src/PlacementStrategy.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PlacementStrategy.hh b/src/PlacementStrategy.hh
index 001218d..e8b0e96 100644
--- a/src/PlacementStrategy.hh
+++ b/src/PlacementStrategy.hh
@@ -24,7 +24,7 @@
24#ifndef PLACEMENTSTRATEGY_HH 24#ifndef PLACEMENTSTRATEGY_HH
25#define PLACEMENTSTRATEGY_HH 25#define PLACEMENTSTRATEGY_HH
26 26
27#include <vector> 27#include <list>
28 28
29class FluxboxWindow; 29class FluxboxWindow;
30 30
@@ -37,7 +37,7 @@ struct PlacementStrategy {
37 * @param place_y y placement of specific strategy 37 * @param place_y y placement of specific strategy
38 * @return true if the strategy found a placement for the window 38 * @return true if the strategy found a placement for the window
39 */ 39 */
40 virtual bool placeWindow(const std::vector<FluxboxWindow *> &windowlist, 40 virtual bool placeWindow(const std::list<FluxboxWindow *> &windowlist,
41 const FluxboxWindow &win, 41 const FluxboxWindow &win,
42 int &place_x, int &place_y) = 0; 42 int &place_x, int &place_y) = 0;
43 virtual ~PlacementStrategy() { } 43 virtual ~PlacementStrategy() { }