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/ooffloatsmgr.cc | |
parent | c9199eabe605b94cbfc47ac356a651cc086a6747 (diff) |
Better abort messages.
Diffstat (limited to 'dw/ooffloatsmgr.cc')
-rw-r--r-- | dw/ooffloatsmgr.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dw/ooffloatsmgr.cc b/dw/ooffloatsmgr.cc index a4750e5a..06bab82b 100644 --- a/dw/ooffloatsmgr.cc +++ b/dw/ooffloatsmgr.cc @@ -770,13 +770,13 @@ void OOFFloatsMgr::tellPosition2 (Widget *widget, int x, int y) void OOFFloatsMgr::tellIncompletePosition1 (Widget *generator, Widget *widget, int x, int y) { - assertNotReached (); + notImplemented ("OOFFloatsMgr::tellIncompletePosition1"); } void OOFFloatsMgr::tellIncompletePosition2 (Widget *generator, Widget *widget, int x, int y) { - assertNotReached (); + notImplemented ("OOFFloatsMgr::tellIncompletePosition2"); } bool OOFFloatsMgr::collidesV (Float *vloat, Float *other, int *yReal) @@ -1280,13 +1280,13 @@ bool OOFFloatsMgr::dealingWithSizeOfChild (core::Widget *child) int OOFFloatsMgr::getAvailWidthOfChild (Widget *child, bool forceValue) { - assertNotReached (); + notImplemented ("OOFFloatsMgr::getAvailWidthOfChild"); return 0; } int OOFFloatsMgr::getAvailHeightOfChild (Widget *child, bool forceValue) { - assertNotReached (); + notImplemented ("OOFFloatsMgr::getAvailHeightOfChild"); return 0; } |