1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 09:38:40 +00:00

fixed a typo for GfxRGB_equal

This commit is contained in:
Lu Wang 2013-01-24 22:41:59 +08:00
parent 062c12aa73
commit 8d09a25baf

View File

@ -86,7 +86,7 @@ class GfxRGB_equal
public: public:
bool operator ()(const GfxRGB & rgb1, const GfxRGB & rgb2) const bool operator ()(const GfxRGB & rgb1, const GfxRGB & rgb2) const
{ {
return ((rgb1.r == rgb2.r) && (rgb1.g == rgb2.g) && (rgb1.b == rgb1.b)); return ((rgb1.r == rgb2.r) && (rgb1.g == rgb2.g) && (rgb1.b == rgb2.b));
} }
}; };