From d35dec9b1197a2d6eb0a43f14561a548a45d520f Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 28 Dec 2003 09:44:34 +0000 Subject: [PATCH] Fixed missing semicolon git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/x11/colour.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x11/colour.cpp b/src/x11/colour.cpp index f62111a909..b334a9b931 100644 --- a/src/x11/colour.cpp +++ b/src/x11/colour.cpp @@ -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) ; }