Developint newdraw

git-svn-id: svn://ultimatepp.org/upp/trunk@1357 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-07-04 19:02:35 +00:00
parent 98df0b46db
commit f3ab8a877f

View file

@ -207,7 +207,7 @@ public:
width == f.width && height == f.height; }
bool operator!=(Font f) const { return !operator==(f); }
dword GetHashValue() const { return MAKELONG(flags, width) ^ MAKELONG(face, height); }
dword GetHashValue() const { return CombineHash(width, flags, height, face); }
bool IsNull() const { return face == 0xffff; }
Font() { height = width = 0; face = flags = 0; }