mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
fixed a typo for GfxRGB_equal
This commit is contained in:
parent
062c12aa73
commit
8d09a25baf
@ -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));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user