Yes, because some of the images don't have correct size and will be resized by wxWidgets.
There are some more asserts, some that can be fixed, some that are fixed in codecompletion-refactoring-branch, some that can not (easily) be fixed.
You can uncheck the show this message next-time (or something like this) checkbox before pressing continue and you will not get the message anymore.
EDIT:You can stop wxWidgets from popping up th assert-message with overriding the OnAssert-function:
::wxOnAssert
void wxOnAssert(const char *fileName, int lineNumber, const char *func, const char *cond, const char *msg = NULL)
This function is called whenever one of debugging macros fails (i.e. condition is false in an assertion). It is only defined in the debug mode, in release builds the wxCHECK failures don't result in anything.
To override the default behaviour in the debug builds which is to show the user a dialog asking whether he wants to abort the program, continue or continue ignoring any subsequent assert failures, you may override wxApp::OnAssertFailure which is called by this function if the global application object exists.