Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3342 for trunk


Ignore:
Timestamp:
04/14/10 09:30:26 (14 years ago)
Author:
mkommend
Message:

removed accidently commited lines in AsynchronousContentView (ticket #953)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/AsynchronousContentView.cs

    r3329 r3342  
    2626    protected new void Invoke(Delegate method) {
    2727      // prevents blocking of worker thread in Invoke, if the control is disposed
    28       if (!IsHandleCreated)
    29         return;
    3028      IAsyncResult result = BeginInvoke(method);
    3129      result.AsyncWaitHandle.WaitOne(1000, false);
     
    4543    protected new void Invoke(Delegate method, params object[] args) {
    4644      // prevents blocking of worker thread in Invoke, if the control is disposed
    47       if (!IsHandleCreated)
    48         return;
    4945      IAsyncResult result = BeginInvoke(method, args);
    5046      result.AsyncWaitHandle.WaitOne(1000, false);
Note: See TracChangeset for help on using the changeset viewer.