projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
a96b474
)
Fixed missing semicolon
author
Julian Smart
<julian@anthemion.co.uk>
Sun, 28 Dec 2003 09:44:34 +0000
(09:44 +0000)
committer
Julian 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
patch
|
blob
|
blame
|
history
diff --git
a/src/x11/colour.cpp
b/src/x11/colour.cpp
index f62111a9098b9a733b655c7733d487c554fd9b33..b334a9b931d4e41aa879903634a204052b3d4163 100644
(file)
--- 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)
return (own->red == other->red)
&& (own->green == other->green)
- && (own->blue == other->blue)
+ && (own->blue == other->blue)
;
}
}