Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/14 03:12:49 (10 years ago)
Author:
swagner
Message:

#2205: Continued working on programmable network items

  • allowed code changes only in user-defined nodes and networks
  • added manual initialization of compiled programmable network items
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.CodeEditor/3.3/CodeEditor.cs

    r10359 r11565  
    2626// OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727
     28using HeuristicLab.Common.Resources;
     29using ICSharpCode.TextEditor;
     30using ICSharpCode.TextEditor.Document;
    2831using System;
    2932using System.CodeDom.Compiler;
     
    3538using System.Threading;
    3639using System.Windows.Forms;
    37 using HeuristicLab.Common.Resources;
    38 using ICSharpCode.TextEditor;
    39 using ICSharpCode.TextEditor.Document;
    4040using Dom = ICSharpCode.SharpDevelop.Dom;
    4141using NRefactory = ICSharpCode.NRefactory;
     
    131131        Doc.CommitUpdate();
    132132      }
     133    }
     134
     135    public bool ReadOnly {
     136      get { return Doc.ReadOnly; }
     137      set { Doc.ReadOnly = value; }
    133138    }
    134139
Note: See TracChangeset for help on using the changeset viewer.