diff options
Diffstat (limited to 'dw/oofpositionedmgr.hh')
-rw-r--r-- | dw/oofpositionedmgr.hh | 9 |
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; |