- Timestamp:
- 03/21/15 10:39:50 (10 years ago)
- 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 105 105 private void errorsListView_DoubleClick(object sender, EventArgs e) { 106 106 if ((Content != null) && (Content.CompileErrors != null)) { 107 codeEditor.ShowCompileErrors(Content.CompileErrors , ".cs");107 codeEditor.ShowCompileErrors(Content.CompileErrors); 108 108 } 109 109 } … … 116 116 try { 117 117 Content.Compile(); 118 } 119 catch (Exception ex) { 118 } catch (Exception ex) { 120 119 if (!(ex is InvalidOperationException) || (Content.CompileErrors == null)) 121 120 ErrorHandling.ShowErrorDialog(this, ex); … … 151 150 } 152 151 153 codeEditor.ShowCompileErrors(Content.CompileErrors , ".cs");152 codeEditor.ShowCompileErrors(Content.CompileErrors); 154 153 } 155 154
Note: See TracChangeset
for help on using the changeset viewer.