added missing semicolons after asserts (patch 567853)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15809 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-06-12 15:26:35 +00:00
parent fa1fcc6642
commit 63fd5f0b27
9 changed files with 9 additions and 9 deletions

View File

@@ -370,7 +370,7 @@ bool wxBitmap::CreateFromXpm( const char **bits )
XGetGeometry( xdisplay, pixmap, &xroot, &xRet, &yRet,
&widthRet, &heightRet, &borderWidthRet, &depthRet);
wxASSERT_MSG( bpp == (int)depthRet, wxT("colour depth mismatch") )
wxASSERT_MSG( bpp == (int)depthRet, wxT("colour depth mismatch") );
#endif
XpmFreeAttributes(&xpmAttr);