aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/XLayerItem.hh
diff options
context:
space:
mode:
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();