aboutsummaryrefslogtreecommitdiff
path: root/dw/layout.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2016-04-13 22:07:21 +0200
committerSebastian Geerken <devnull@localhost>2016-04-13 22:07:21 +0200
commitf9e84c934486ae795a5b310bf88cd8919730ec7c (patch)
tree80a3bf1d05fced88efa54b1826365f977db255dd /dw/layout.hh
parenta6be59d31f590d2d0c36e64537630ae12d996b27 (diff)
Removed Layout::queueQueueResizeList and optimized multiple (both nested and sequential) queueResize.
Diffstat (limited to 'dw/layout.hh')
-rw-r--r--dw/layout.hh18
1 files changed, 0 insertions, 18 deletions
diff --git a/dw/layout.hh b/dw/layout.hh
index 16d19979..aada2069 100644
--- a/dw/layout.hh
+++ b/dw/layout.hh
@@ -152,27 +152,9 @@ private:
~Anchor ();
};
- class QueueResizeItem: public lout::object::Object
- {
- public:
- Widget *widget;
- int ref;
- bool extremesChanged, fast;
-
- inline QueueResizeItem (Widget *widget, int ref, bool extremesChanged,
- bool fast)
- {
- this->widget = widget;
- this->ref = ref;
- this->extremesChanged = extremesChanged;
- this->fast = fast;
- }
- };
-
Platform *platform;
View *view;
Widget *topLevel, *widgetAtPoint;
- lout::container::typed::Stack<QueueResizeItem> *queueQueueResizeList;
lout::container::typed::Vector<Widget> *queueResizeList;
/* The state, which must be projected into the view. */