summaryrefslogtreecommitdiff
path: root/dw/layout.cc
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.cc
parenta6be59d31f590d2d0c36e64537630ae12d996b27 (diff)
Removed Layout::queueQueueResizeList and optimized multiple (both nested and sequential) queueResize.
Diffstat (limited to 'dw/layout.cc')
-rw-r--r--dw/layout.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/dw/layout.cc b/dw/layout.cc
index ee58f7ee..3535d794 100644
--- a/dw/layout.cc
+++ b/dw/layout.cc
@@ -260,7 +260,6 @@ Layout::Layout (Platform *platform)
topLevel = NULL;
widgetAtPoint = NULL;
- queueQueueResizeList = new typed::Stack<QueueResizeItem> (true);
queueResizeList = new typed::Vector<Widget> (4, false);
DBG_OBJ_CREATE ("dw::core::Layout");
@@ -334,7 +333,6 @@ Layout::~Layout ()
delete w;
}
- delete queueQueueResizeList;
delete queueResizeList;
delete platform;
delete view;