Changeset 303 for trunk/Include/Classes/System/Drawing/SizeF.ab
- Timestamp:
- Aug 24, 2007, 11:14:46 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/Classes/System/Drawing/SizeF.ab
r223 r303 68 68 69 69 Override Function GetHashCode() As Long 70 Return VarPtr(GetDWord(width)) Xor _System_BSwap(VarPtr(GetDWord(height)))70 Return GetDWord(VarPtr(width)) Xor _System_BSwap(GetDWord(VarPtr(height))) 71 71 End Function 72 72 … … 75 75 End Function 76 76 77 Function Add(sz As Size ) As Size77 Function Add(sz As SizeF) As SizeF 78 78 Return This + sz 79 79 End Function
Note:
See TracChangeset
for help on using the changeset viewer.