aboutsummaryrefslogtreecommitdiff
path: root/dw/widget.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2015-12-28 23:57:09 +0100
committerSebastian Geerken <devnull@localhost>2015-12-28 23:57:09 +0100
commit6211c25f5528bf4a3e660f94de459b83bdd5c2e9 (patch)
treece9c465e09284db1c5b2ad04b37f6e5ac7b5923d /dw/widget.hh
parente37c0bba9f08a5a8ac6e9a68ac6515702485bef7 (diff)
SRDOP: Fix endless recursion.
Diffstat (limited to 'dw/widget.hh')
-rw-r--r--dw/widget.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/widget.hh b/dw/widget.hh
index 5db9aa33..d21b2697 100644
--- a/dw/widget.hh
+++ b/dw/widget.hh
@@ -301,7 +301,7 @@ protected:
*/
virtual void getExtremesSimpl (Extremes *extremes);
- virtual void calcExtraSpaceImpl ();
+ virtual void calcExtraSpaceImpl (bool vertical);
/**
* \brief See \ref dw-widget-sizes.
@@ -483,7 +483,7 @@ public:
Widget **references = NULL, int *x = NULL, int *y = NULL);
void sizeAllocate (Allocation *allocation);
- void calcExtraSpace ();
+ void calcExtraSpace (bool vertical);
int getAvailWidth (bool forceValue);
int getAvailHeight (bool forceValue);