Ignore:
Timestamp:
Feb 16, 2007, 7:34:38 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

Boolean対応ほか微修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Drawing/Point.ab

    r29 r104  
    5151    End Sub
    5252
    53     Function IsEmpty() As BOOL
     53    Function IsEmpty() As Boolean
    5454        If x = 0 And y = 0 Then
    5555            Return _System_TRUE
     
    8080    End Function
    8181
    82     Function Operator == (sz As Point) As BOOL
     82    Function Operator == (sz As Point) As Boolean
    8383        Return Equals(sz)
    8484    End Function
    8585
    86     Function Operator <> (sz As Point) As BOOL
     86    Function Operator <> (sz As Point) As Boolean
    8787        Return Not Equals(sz)
    8888    End Function
     
    118118    End Function
    119119
    120     Function Equals(pt As Point) As BOOL
     120    Function Equals(pt As Point) As Boolean
    121121        If x = pt.x And y = pt.y Then
    122122            Equals = _System_TRUE
Note: See TracChangeset for help on using the changeset viewer.