Ignore:
Timestamp:
Apr 13, 2007, 5:12:31 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

Object.ReferenceEqualsを追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Version.ab

    r175 r212  
    2323        This.major = major
    2424        This.minor = minor
    25         build = -1
    26         revision = -1
     25        This.build = -1
     26        This.revision = -1
    2727    End Sub
    2828
     
    3131        This.minor = minor
    3232        This.build = build
    33         revision = -1
     33        This.revision = -1
    3434    End Sub
    3535
     
    126126        ToString = Str$(major)
    127127        If fieldCount = 1 Then Exit Function
    128         ToString = Str$(minor)
     128        ToString = ToString + "." + Str$(minor)
    129129        If fieldCount = 2 Then Exit Function
    130130
     
    133133            Debug
    134134        End If
    135         ToString = Str$(build)
     135        ToString = ToString + "." + Str$(build)
    136136        If fieldCount = 3 Then Exit Function
    137137
     
    140140            Debug
    141141        End If
    142         ToString = Str$(rivision)
     142        ToString = ToString + "." + Str$(rivision)
    143143    End Function
    144144Private
Note: See TracChangeset for help on using the changeset viewer.