Ignore:
Timestamp:
Nov 15, 2007, 3:26:33 AM (16 years ago)
Author:
dai
Message:

COMインターフェイスが扱えないデグレを修正。
※COMインターフェイスの定義では必ずIUnkownを継承してください

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/Classes/System/Windows/Forms/Control.ab

    r303 r381  
    2828
    2929Class AsyncResultForInvoke
    30     Inherits System.IAsyncResult
     30    Implements System.IAsyncResult
    3131Public
    3232    ' Properties
     
    3535    End Sub
    3636
    37     Override Function AsyncState() As Object
     37    Function AsyncState() As Object
    3838        Return Nothing
    3939    End Function
    4040
    41     Override Function AsyncWaitHandle() As System.Threading.WaitHandle
     41    Function AsyncWaitHandle() As System.Threading.WaitHandle
    4242        Return waitHandle
    4343    End Function
    4444
    45     Override Function CompletedSynchronously() As Boolean
     45    Function CompletedSynchronously() As Boolean
    4646        Return False
    4747    End Function
    4848
    49     Override Function IsCompleted() As Boolean
     49    Function IsCompleted() As Boolean
    5050        Return waitHandle.WaitOne(0, False)
    5151    End Function
Note: See TracChangeset for help on using the changeset viewer.