aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/XLayerItem.hh
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2011-02-23 21:46:13 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2011-02-23 21:46:13 (GMT)
commit813e6c4402b7d13a9e7b1ce3e391bc4c8d894ea3 (patch)
treeb921da6cf7680d0bcded98caf319de6d058dca13 /src/FbTk/XLayerItem.hh
parentc859ae3987d0b49609effb98e8c28562e1947cf1 (diff)
downloadfluxbox_paul-813e6c4402b7d13a9e7b1ce3e391bc4c8d894ea3.zip
fluxbox_paul-813e6c4402b7d13a9e7b1ce3e391bc4c8d894ea3.tar.bz2
disabled overhead base classes 'FbTk::Layer' and 'FbTk::LayerItem'
had to add <algorithm> at various other files as a result of this change.
Diffstat (limited to 'src/FbTk/XLayerItem.hh')
-rw-r--r--src/FbTk/XLayerItem.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbTk/XLayerItem.hh b/src/FbTk/XLayerItem.hh
index 8f9aebe..67da511 100644
--- a/src/FbTk/XLayerItem.hh
+++ b/src/FbTk/XLayerItem.hh
@@ -23,17 +23,17 @@
23#ifndef FBTK_XLAYERITEM_HH 23#ifndef FBTK_XLAYERITEM_HH
24#define FBTK_XLAYERITEM_HH 24#define FBTK_XLAYERITEM_HH
25 25
26#include "LayerItem.hh"
27#include "XLayer.hh" 26#include "XLayer.hh"
28#include "NotCopyable.hh" 27#include "NotCopyable.hh"
28#include <vector>
29 29
30namespace FbTk { 30namespace FbTk {
31 31
32class FbWindow; 32class FbWindow;
33 33
34class XLayerItem : public LayerItem, private NotCopyable { 34class XLayerItem : private NotCopyable {
35public: 35public:
36 typedef std::list<FbWindow *> Windows; 36 typedef std::vector<FbWindow *> Windows;
37 37
38 XLayerItem(FbWindow &win, XLayer &layer); 38 XLayerItem(FbWindow &win, XLayer &layer);
39 ~XLayerItem(); 39 ~XLayerItem();