From 87bb3c9c4f13792d69eda4e9cb178915c17e2e34 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Fri, 4 Apr 2014 15:09:15 +0000 Subject: [PATCH] fix some asserts that were clearly meant to be wxFAIL_MSG git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/richtext/richtextbuffer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/richtext/richtextbuffer.cpp b/src/richtext/richtextbuffer.cpp index 4ea21a9563..239883ba98 100644 --- a/src/richtext/richtextbuffer.cpp +++ b/src/richtext/richtextbuffer.cpp @@ -312,7 +312,7 @@ int wxRichTextFloatCollector::GetFitPosition(int direction, int start, int heigh return GetFitPosition(m_right, start, height); else { - wxASSERT("Never should be here"); + wxFAIL_MSG("Never should be here"); return start; } } @@ -342,7 +342,7 @@ void wxRichTextFloatCollector::CollectFloat(wxRichTextParagraph* para, wxRichTex break; default: delete map; - wxASSERT("Unrecognised float attribute."); + wxFAIL_MSG("Unrecognised float attribute."); } m_para = para;