Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/21/15 10:39:50 (10 years ago)
Author:
abeham
Message:

#2205:

  • changed branch to build to trunk
  • Reintegrated distributed additions to Core, Operators, etc. into Networks plugin
Location:
branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Scripting
Files:
1 added
2 copied

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Networks.Views/3.3/Scripting/ProgrammableItemView.cs

    r12227 r12232  
    105105    private void errorsListView_DoubleClick(object sender, EventArgs e) {
    106106      if ((Content != null) && (Content.CompileErrors != null)) {
    107         codeEditor.ShowCompileErrors(Content.CompileErrors, ".cs");
     107        codeEditor.ShowCompileErrors(Content.CompileErrors);
    108108      }
    109109    }
     
    116116      try {
    117117        Content.Compile();
    118       }
    119       catch (Exception ex) {
     118      } catch (Exception ex) {
    120119        if (!(ex is InvalidOperationException) || (Content.CompileErrors == null))
    121120          ErrorHandling.ShowErrorDialog(this, ex);
     
    151150      }
    152151
    153       codeEditor.ShowCompileErrors(Content.CompileErrors, ".cs");
     152      codeEditor.ShowCompileErrors(Content.CompileErrors);
    154153    }
    155154
Note: See TracChangeset for help on using the changeset viewer.