aboutsummaryrefslogtreecommitdiff
path: root/dw/ui.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2016-01-09 16:25:17 +0100
committerSebastian Geerken <devnull@localhost>2016-01-09 16:25:17 +0100
commit9e5ef05a592d637f115b8a8b0b61da940d7bbbe4 (patch)
tree16fff5f08f8827ec869132c53a231d456a50018e /dw/ui.cc
parentc9199eabe605b94cbfc47ac356a651cc086a6747 (diff)
Better abort messages.
Diffstat (limited to 'dw/ui.cc')
-rw-r--r--dw/ui.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/dw/ui.cc b/dw/ui.cc
index c95160a4..62b91d5f 100644
--- a/dw/ui.cc
+++ b/dw/ui.cc
@@ -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 ()