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/PointF.ab

    r77 r104  
    4545    End Sub
    4646
    47     Function IsEmpty() As BOOL
     47    Function IsEmpty() As Boolean
    4848        If x = 0 And y = 0 Then
    4949            Return _System_TRUE
     
    8787    End Function
    8888
    89     Function Operator == (sz As PointF) As BOOL
     89    Function Operator == (sz As PointF) As Boolean
    9090        Return Equals(sz)
    9191    End Function
    9292
    93     Function Operator <> (sz As PointF) As BOOL
     93    Function Operator <> (sz As PointF) As Boolean
    9494        Return Not Equals(sz)
    9595    End Function
     
    125125    End Function
    126126
    127     Function Equals(pt As PointF) As BOOL
     127    Function Equals(pt As PointF) As Boolean
    128128        If x = pt.x And y = pt.y Then
    129129            Equals = _System_TRUE
Note: See TracChangeset for help on using the changeset viewer.