diff options
author | Sebastian Geerken <devnull@localhost> | 2016-01-09 16:25:17 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2016-01-09 16:25:17 +0100 |
commit | 9e5ef05a592d637f115b8a8b0b61da940d7bbbe4 (patch) | |
tree | 16fff5f08f8827ec869132c53a231d456a50018e /dw/ui.cc | |
parent | c9199eabe605b94cbfc47ac356a651cc086a6747 (diff) |
Better abort messages.
Diffstat (limited to 'dw/ui.cc')
-rw-r--r-- | dw/ui.cc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -230,14 +230,14 @@ void Resource::sizeAllocate (Allocation *allocation) int Resource::getAvailWidthOfChild (Widget *child, bool forceValue) { // Only used when the resource contains other dillo widgets. - misc::assertNotReached (); + misc::notImplemented ("Resource::getAvailWidthOfChild"); return 0; } int Resource::getAvailHeightOfChild (Widget *child, bool forceValue) { // Only used when the resource contains other dillo widgets. - misc::assertNotReached (); + misc::notImplemented ("Resource::getAvailHeightOfChild"); return 0; } @@ -247,14 +247,14 @@ void Resource::correctRequisitionOfChild (Widget *child, int*)) { // Only used when the resource contains other dillo widgets. - misc::assertNotReached (); + misc::notImplemented ("Resource::correctRequisitionOfChild"); } void Resource::correctExtremesOfChild (Widget *child, Extremes *extremes, bool useAdjustmentWidth) { // Only used when the resource contains other dillo widgets. - misc::assertNotReached (); + misc::notImplemented ("Resource::correctExtremesOfChild"); } void Resource::containerSizeChangedForChildren () |