X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/257ed895d539d3dc6a11058c337ba1a58c5b7036..9398120d298d745763f253d87d774be3b134b43f:/contrib/src/ogl/composit.cpp diff --git a/contrib/src/ogl/composit.cpp b/contrib/src/ogl/composit.cpp index 6dbc6190a7..ded8e3be12 100644 --- a/contrib/src/ogl/composit.cpp +++ b/contrib/src/ogl/composit.cpp @@ -14,7 +14,7 @@ #endif // For compilers that support precompilation, includes "wx.h". -#include +#include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop @@ -723,7 +723,7 @@ void wxCompositeShape::ReadConstraints(wxExpr *clause, wxExprDatabase *database) if (objExpr1 && objExpr1->GetClientData()) m_constrainingObject = (wxShape *)objExpr1->GetClientData(); else - wxFatalError("Couldn't find constraining image of composite.", "Object graphics error"); + wxLogFatalError(wxT("Object graphics error: Couldn't find constraining image of composite.")); int i = 0; wxExpr *currentIdExpr = constrainedExpr->Nth(i); @@ -737,7 +737,7 @@ void wxCompositeShape::ReadConstraints(wxExpr *clause, wxExprDatabase *database) } else { - wxFatalError("Couldn't find constrained image of composite.", "Object graphics error"); + wxLogFatalError(wxT("Object graphics error: Couldn't find constrained image of composite.")); } i ++; @@ -746,7 +746,7 @@ void wxCompositeShape::ReadConstraints(wxExpr *clause, wxExprDatabase *database) wxOGLConstraint *newConstraint = AddConstraint(cType, m_constrainingObject, m_constrainedObjects); newConstraint->SetSpacing(cXSpacing, cYSpacing); newConstraint->m_constraintId = cId; - newConstraint->m_constraintName = (const char*) cName; + newConstraint->m_constraintName = cName; constraintNo ++; } }