]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed missing semicolon
authorJulian Smart <julian@anthemion.co.uk>
Sun, 28 Dec 2003 09:44:34 +0000 (09:44 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 28 Dec 2003 09:44:34 +0000 (09:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/x11/colour.cpp

index f62111a9098b9a733b655c7733d487c554fd9b33..b334a9b931d4e41aa879903634a204052b3d4163 100644 (file)
@@ -213,7 +213,7 @@ bool wxColour::operator == ( const wxColour& col ) const
 
     return (own->red == other->red)
         && (own->green == other->green)
-        && (own->blue == other->blue)
+        && (own->blue == other->blue) ;
 
 }