]> git.saurik.com Git - wxWidgets.git/commitdiff
Permission for flood-fill code clarified
authorJulian Smart <julian@anthemion.co.uk>
Fri, 6 May 2005 12:17:01 +0000 (12:17 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 6 May 2005 12:17:01 +0000 (12:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33966 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/imagfill.cpp

index 08f35858c46a80a2788f93dbd0de7c9b83540356..bfe5345247156609630ba84a5c80c64f3da45aa6 100644 (file)
@@ -67,7 +67,10 @@ wxImageFloodFill(wxImage *image,
     /* A diamond flood-fill using a circular queue system.
     Each pixel surrounding the current pixel is added to
     the queue if it meets the criteria, then is retrieved in
-    its turn.  Code originally based on http://www.drawit.co.nz/Developers.htm */
+    its turn.  Code originally based on http://www.drawit.co.nz/Developers.htm,
+    with explicit permission to use this for wxWidgets granted by Andrew Empson
+    (no copyright claimed)
+     */
 
     int width = image->GetWidth();
     int height = image->GetHeight();