diff options
author | markt <markt> | 2007-10-13 21:51:37 (GMT) |
---|---|---|
committer | markt <markt> | 2007-10-13 21:51:37 (GMT) |
commit | a59428d67a95a9df16554962f0a6257d6378328a (patch) | |
tree | f856ed9300c34f7a17d499f22d895610cfbc08e5 /src/PlacementStrategy.hh | |
parent | 41b5c6dadb1f474675660cef18b812d4c2338ed2 (diff) | |
download | fluxbox_pavel-a59428d67a95a9df16554962f0a6257d6378328a.zip fluxbox_pavel-a59428d67a95a9df16554962f0a6257d6378328a.tar.bz2 |
merged changes from pre-devel
Diffstat (limited to 'src/PlacementStrategy.hh')
-rw-r--r-- | src/PlacementStrategy.hh | 4 |
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 | ||
29 | class FluxboxWindow; | 29 | class 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() { } |