diff options
author | Sebastian Geerken <devnull@localhost> | 2015-06-08 22:18:41 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-06-08 22:18:41 +0200 |
commit | 7c8f69de8bc95c6078ee5fc0b63d263a80f31b44 (patch) | |
tree | b495c1320496cd5ff67c56b6a07d5a79c218455b /test | |
parent | 826577556fa8b8eedcf1620b4104115d83dbce0b (diff) |
SRDOP: Positions relative to multiple references; design now considers handling conflicts.
Diffstat (limited to 'test')
-rw-r--r-- | test/dw_simple_container.cc | 6 | ||||
-rw-r--r-- | test/dw_simple_container.hh | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/test/dw_simple_container.cc b/test/dw_simple_container.cc index 26d030a3..923642b1 100644 --- a/test/dw_simple_container.cc +++ b/test/dw_simple_container.cc @@ -160,8 +160,7 @@ SimpleContainer::~SimpleContainer () delete child; } -void SimpleContainer::sizeRequestImpl (Requisition *requisition, - bool posDefined, int x, int y) +void SimpleContainer::sizeRequestSimpl (Requisition *requisition) { Requisition childReq; if (child) @@ -177,8 +176,7 @@ void SimpleContainer::sizeRequestImpl (Requisition *requisition, } -void SimpleContainer::getExtremesImpl (Extremes *extremes, bool posDefined, - int x, int y) +void SimpleContainer::getExtremesSimpl (Extremes *extremes) { Extremes childExtr; if (child) diff --git a/test/dw_simple_container.hh b/test/dw_simple_container.hh index 10c4b712..bd40b41e 100644 --- a/test/dw_simple_container.hh +++ b/test/dw_simple_container.hh @@ -34,10 +34,8 @@ private: Widget *child; protected: - void sizeRequestImpl (core::Requisition *requisition, bool posDefined, int x, - int y); - void getExtremesImpl (core::Extremes *extremes, bool posDefined, int x, - int y); + void sizeRequestSimpl (core::Requisition *requisition); + void getExtremesSimpl (core::Extremes *extremes); void sizeAllocateImpl (core::Allocation *allocation); public: |