Changeset 289


Ignore:
Timestamp:
Aug 15, 2007, 3:29:59 AM (17 years ago)
Author:
dai
Message:

タイプミスを修正。

Location:
Include
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/ActiveBasic/Math/Math.ab

    r285 r289  
    6666    Dim p = VarPtr(x) As *DWord
    6767    p[1] And= &H7FF00000
    68     IsFinite = p[1] And &H7FF00000 = &H7FF00000
     68    IsFinite = ( p[1] And &H7FF00000 ) = &H7FF00000
    6969End Function
    7070
  • Include/Classes/System/Collections/ArrayList.ab

    r279 r289  
    319319
    320320    Static Function FixedSize(l As IList) As IList
    321         Return FixedSize(Adapter(VarPtr(l)))
     321        Return FixedSize(Adapter(l))
    322322    End Function
    323323
  • Include/Classes/System/IO/FileStream.ab

    r271 r289  
    9393        End Select
    9494
    95         This.handle=CreateFile(path.Chars As PSTR,ac,sh,ByVal NULL,mo,op,0)
     95        This.handle=CreateFile(path As PSTR,ac,sh,ByVal NULL,mo,op,0)
    9696        If This.handle=INVALID_HANDLE_VALUE Then
    9797        'エラー処理
  • Include/basic/function.sbp

    r281 r289  
    265265
    266266Function Date$() As String
    267     Dim date = DateTime.Now
     267    Dim date = System.DateTime.Now
    268268    Dim buf = New System.Text.StringBuilder(10)
    269269
     
    693693
    694694Function Time$() As String
    695     Dim time = DateTime.Now
     695    Dim time = System.DateTime.Now
    696696
    697697    Dim buf = New System.Text.StringBuilder(8)
  • Include/system/interface.ab

    r288 r289  
    66Function CastToInterface( obj As Object, typeOfInterface As System.TypeInfo ) As InterfaceStructure
    77    Dim interfaceStructure As InterfaceStructure
    8     interfaceStructure.thisPtr = ObjPtr( obj )
    9     interfaceStructure.vtblPtr = obj.GetVtbl( typeOfInterface )
     8
     9    ' TODO: 実装
     10    'interfaceStructure.thisPtr = ObjPtr( obj )
     11    'interfaceStructure.vtblPtr = obj.GetVtbl( typeOfInterface )
    1012End Function
Note: See TracChangeset for help on using the changeset viewer.