aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Layer.hh
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-10-01 08:38:56 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-10-01 08:38:56 (GMT)
commit269459e1aa0a8c0ab9be67cf11bb836ecc191f31 (patch)
tree09fa57effb9f6c0b6f6456a11a6ce2b45d1c66f0 /src/FbTk/Layer.hh
parentb3da022ee22acd67f6ef6210e7412dbfc8fdfa70 (diff)
downloadfluxbox-269459e1aa0a8c0ab9be67cf11bb836ecc191f31.zip
fluxbox-269459e1aa0a8c0ab9be67cf11bb836ecc191f31.tar.bz2
don't flash original window in the middle of cycling focus
Diffstat (limited to 'src/FbTk/Layer.hh')
-rw-r--r--src/FbTk/Layer.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbTk/Layer.hh b/src/FbTk/Layer.hh
index 405285c..b9257c3 100644
--- a/src/FbTk/Layer.hh
+++ b/src/FbTk/Layer.hh
@@ -43,7 +43,6 @@ public:
43 virtual void raise(ItemType &item); 43 virtual void raise(ItemType &item);
44 /// move item to bottom 44 /// move item to bottom
45 virtual void lower(ItemType &item); 45 virtual void lower(ItemType &item);
46 virtual void restack();
47 /// @return layer item on specific position, on failure 0 46 /// @return layer item on specific position, on failure 0
48 ItemType *getItem(unsigned int position); 47 ItemType *getItem(unsigned int position);
49 /// @return number of elements in layer 48 /// @return number of elements in layer
@@ -52,6 +51,8 @@ public:
52 const ListType &itemList() const { return m_list; } 51 const ListType &itemList() const { return m_list; }
53 /// @return layer list 52 /// @return layer list
54 ListType &itemList() { return m_list; } 53 ListType &itemList() { return m_list; }
54protected:
55 virtual void restack();
55private: 56private:
56 ListType m_list; 57 ListType m_list;
57}; 58};