]> git.saurik.com Git - wxWidgets.git/commitdiff
assert -> wxASSERT
authorJulian Smart <julian@anthemion.co.uk>
Sat, 30 Jul 2005 11:55:41 +0000 (11:55 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 30 Jul 2005 11:55:41 +0000 (11:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35016 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/image.cpp

index 29562c0ebece1eebe155101ee89fab128013d334..50307d6ec88ab5ada3e46dc38bf45c0a674ac086 100644 (file)
@@ -1879,7 +1879,7 @@ void wxImage::RotateHue(double angle)
     wxImage::HSVValue hsv;
     wxImage::RGBValue rgb;
 
-    assert (angle >= -1.0 && angle <= 1.0);
+    wxASSERT (angle >= -1.0 && angle <= 1.0);
     count = M_IMGDATA->m_width * M_IMGDATA->m_height;
     if (count > 0 && angle != 0.0)
     {