summaryrefslogtreecommitdiff
path: root/src/FbTk/Container.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/Container.hh')
-rw-r--r--src/FbTk/Container.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbTk/Container.hh b/src/FbTk/Container.hh
index 00f2c88..e2614a8 100644
--- a/src/FbTk/Container.hh
+++ b/src/FbTk/Container.hh
@@ -43,7 +43,7 @@ public:
43 typedef const Button * ConstItem; 43 typedef const Button * ConstItem;
44 typedef std::list<Item> ItemList; 44 typedef std::list<Item> ItemList;
45 45
46 explicit Container(const FbWindow &parent); 46 explicit Container(const FbWindow &parent, bool auto_resize = true);
47 virtual ~Container(); 47 virtual ~Container();
48 48
49 // manipulators 49 // manipulators
@@ -106,7 +106,7 @@ private:
106 unsigned int m_max_size_per_client; 106 unsigned int m_max_size_per_client;
107 unsigned int m_max_total_size; 107 unsigned int m_max_total_size;
108 ItemList m_item_list; 108 ItemList m_item_list;
109 bool m_update_lock; 109 bool m_update_lock, m_auto_resize;
110}; 110};
111 111
112} // end namespace FbTk 112} // end namespace FbTk