summaryrefslogtreecommitdiff
path: root/dw/oofpositionedmgr.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2015-02-03 11:01:28 +0100
committerSebastian Geerken <devnull@localhost>2015-02-03 11:01:28 +0100
commitac04cad270ed1ad13e99124361b14af6682234e2 (patch)
treee5961f80e168c12cb4664633ce080b4b44fd9d45 /dw/oofpositionedmgr.hh
parentcdc7bebac4c0fa7fe198c4b72c62948ffeb12815 (diff)
Removed 'reference' of posioned elements.
Diffstat (limited to 'dw/oofpositionedmgr.hh')
-rw-r--r--dw/oofpositionedmgr.hh9
1 files changed, 3 insertions, 6 deletions
diff --git a/dw/oofpositionedmgr.hh b/dw/oofpositionedmgr.hh
index 2962a9d1..a4318a08 100644
--- a/dw/oofpositionedmgr.hh
+++ b/dw/oofpositionedmgr.hh
@@ -13,19 +13,16 @@ protected:
class Child: public lout::object::Object
{
public:
- core::Widget *widget, *reference;
+ core::Widget *widget;
OOFAwareWidget *generator;
int externalIndex, x, y;
inline Child (core::Widget *widget, OOFAwareWidget *generator,
- core::Widget *reference, int externalIndex)
+ int externalIndex)
{ this->widget = widget; this->generator = generator;
- this->reference = reference; this->externalIndex = externalIndex;
- x = y = 0; }
+ this->externalIndex = externalIndex; x = y = 0; }
};
- virtual bool isReference (core::Widget *widget) = 0;
-
OOFAwareWidget *container;
core::Allocation containerAllocation;