Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/06/12 11:35:59 (12 years ago)
Author:
ascheibe
Message:

#1937

  • fixed wrong assembly references in project files
  • fixed cases of file names
  • removed an InvokeRequired check that Mono couldn't handle
  • changed visibility of inherited setters so that the Mono compiler doesn't crash
  • specified the namespace of the Random class so that Mono doesn't confuses it with our Random class
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.cs

    r7259 r8587  
    197197      //mkommend: solution to resizing issues. taken from http://support.microsoft.com/kb/953934
    198198      //not implemented with a panel to reduce the number of nested controls
    199       if (Handle != null)
     199      //also cf. http://connect.microsoft.com/VisualStudio/feedback/details/98368/csc-incorrectly-allows-comparison-between-intptr-and-null
     200      if (Handle != IntPtr.Zero)
    200201        this.BeginInvoke((Action<EventArgs>)OnSizeChangedHelper, e);
    201202    }
Note: See TracChangeset for help on using the changeset viewer.