Changeset 11594 for branches/Breadcrumbs/HeuristicLab.CodeEditor/3.3
- Timestamp:
- 11/27/14 11:23:37 (10 years ago)
- Location:
- branches/Breadcrumbs
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Breadcrumbs
- Property svn:ignore
-
old new 8 8 FxCopResults.txt 9 9 Google.ProtocolBuffers-0.9.1.dll 10 Google.ProtocolBuffers-2.4.1.473.dll 10 11 HeuristicLab 3.3.5.1.ReSharper.user 11 12 HeuristicLab 3.3.6.0.ReSharper.user 12 13 HeuristicLab.4.5.resharper.user 13 14 HeuristicLab.ExtLibs.6.0.ReSharper.user 15 HeuristicLab.Scripting.Development 14 16 HeuristicLab.resharper.user 15 17 ProtoGen.exe … … 17 19 _ReSharper.HeuristicLab 18 20 _ReSharper.HeuristicLab 3.3 21 _ReSharper.HeuristicLab 3.3 Tests 19 22 _ReSharper.HeuristicLab.ExtLibs 20 23 bin 21 24 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/Breadcrumbs/HeuristicLab.CodeEditor/3.3/CodeEditor.cs
r5287 r11594 133 133 } 134 134 135 public bool ReadOnly { 136 get { return Doc.ReadOnly; } 137 set { Doc.ReadOnly = value; } 138 } 139 135 140 #endregion 136 141 … … 140 145 if (TextEditorValidated != null) 141 146 TextEditorValidated(this, EventArgs.Empty); 147 } 148 149 public event EventHandler TextEditorTextChanged; 150 151 protected void OnTextEditorTextChanged() { 152 if (TextEditorTextChanged != null) 153 TextEditorTextChanged(this, EventArgs.Empty); 142 154 } 143 155 … … 188 200 189 201 textEditor.Validated += (s, a) => { OnTextEditorValidated(); }; 202 textEditor.TextChanged += (s, a) => { OnTextEditorTextChanged(); }; 190 203 InitializeImageList(); 191 204 } … … 298 311 public void AddAssembly(Assembly a) { 299 312 ShowMessage("Loading " + a.GetName().Name + "..."); 300 if ( assemblies.Contains(a))301 return;302 var reference = projectContentRegistry.GetProjectContentForReference(a.GetName().Name, a.Location);303 projectContent.AddReferencedContent(reference);304 assemblies.Add(a);313 if (!assemblies.Contains(a)) { 314 var reference = projectContentRegistry.GetProjectContentForReference(a.GetName().Name, a.Location); 315 projectContent.AddReferencedContent(reference); 316 assemblies.Add(a); 317 } 305 318 ShowMessage("Ready"); 306 319 } 307 320 public void RemoveAssembly(Assembly a) { 308 321 ShowMessage("Unloading " + a.GetName().Name + "..."); 309 if ( !assemblies.Contains(a))310 return;311 var content = projectContentRegistry.GetExistingProjectContent(a.Location);312 if (content != null) {313 projectContent.ReferencedContents.Remove(content);314 projectContentRegistry.UnloadProjectContent(content);322 if (assemblies.Contains(a)) { 323 var content = projectContentRegistry.GetExistingProjectContent(a.Location); 324 if (content != null) { 325 projectContent.ReferencedContents.Remove(content); 326 projectContentRegistry.UnloadProjectContent(content); 327 } 315 328 } 316 329 ShowMessage("Ready"); -
branches/Breadcrumbs/HeuristicLab.CodeEditor/3.3/CodeViewer.Designer.cs
r9456 r11594 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/Breadcrumbs/HeuristicLab.CodeEditor/3.3/CodeViewer.cs
r9456 r11594 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/Breadcrumbs/HeuristicLab.CodeEditor/3.3/ErrorBookmark.cs
r9456 r11594 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/Breadcrumbs/HeuristicLab.CodeEditor/3.3/Plugin.cs.frame
r10037 r11594 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 27 27 28 28 namespace HeuristicLab.CodeEditor { 29 [Plugin("HeuristicLab.CodeEditor", "3.3. 9.$WCREV$")]29 [Plugin("HeuristicLab.CodeEditor", "3.3.10.$WCREV$")] 30 30 [PluginFile("HeuristicLab.CodeEditor-3.3.dll", PluginFileType.Assembly)] 31 31 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] -
branches/Breadcrumbs/HeuristicLab.CodeEditor/3.3/Properties/AssemblyInfo.cs.frame
r10037 r11594 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 3Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 32 32 [assembly: AssemblyCompany("")] 33 33 [assembly: AssemblyProduct("HeuristicLab")] 34 [assembly: AssemblyCopyright("(c) 2002-201 3HEAL & Daniel Grunwald (#develop)")]34 [assembly: AssemblyCopyright("(c) 2002-2014 HEAL & Daniel Grunwald (#develop)")] 35 35 [assembly: AssemblyTrademark("")] 36 36 [assembly: AssemblyCulture("")] … … 51 51 // 52 52 [assembly: AssemblyVersion("3.3.0.0")] 53 [assembly: AssemblyFileVersion("3.3. 9.$WCREV$")]53 [assembly: AssemblyFileVersion("3.3.10.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.