Changeset 212 for Include/Classes/System/Version.ab
- Timestamp:
- Apr 13, 2007, 5:12:31 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/Version.ab
r175 r212 23 23 This.major = major 24 24 This.minor = minor 25 build = -126 revision = -125 This.build = -1 26 This.revision = -1 27 27 End Sub 28 28 … … 31 31 This.minor = minor 32 32 This.build = build 33 revision = -133 This.revision = -1 34 34 End Sub 35 35 … … 126 126 ToString = Str$(major) 127 127 If fieldCount = 1 Then Exit Function 128 ToString = Str$(minor)128 ToString = ToString + "." + Str$(minor) 129 129 If fieldCount = 2 Then Exit Function 130 130 … … 133 133 Debug 134 134 End If 135 ToString = Str$(build)135 ToString = ToString + "." + Str$(build) 136 136 If fieldCount = 3 Then Exit Function 137 137 … … 140 140 Debug 141 141 End If 142 ToString = Str$(rivision)142 ToString = ToString + "." + Str$(rivision) 143 143 End Function 144 144 Private
Note:
See TracChangeset
for help on using the changeset viewer.