Changeset 11205 for branches/HiveStatistics/sources/HeuristicLab.CodeEditor
- Timestamp:
- 07/18/14 13:44:53 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- 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/HiveStatistics/sources/HeuristicLab.CodeEditor/3.3/CodeEditor.cs
r11203 r11205 140 140 if (TextEditorValidated != null) 141 141 TextEditorValidated(this, EventArgs.Empty); 142 } 143 144 public event EventHandler TextEditorTextChanged; 145 146 protected void OnTextEditorTextChanged() { 147 if (TextEditorTextChanged != null) 148 TextEditorTextChanged(this, EventArgs.Empty); 142 149 } 143 150 … … 188 195 189 196 textEditor.Validated += (s, a) => { OnTextEditorValidated(); }; 197 textEditor.TextChanged += (s, a) => { OnTextEditorTextChanged(); }; 190 198 InitializeImageList(); 191 199 } … … 298 306 public void AddAssembly(Assembly a) { 299 307 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);308 if (!assemblies.Contains(a)) { 309 var reference = projectContentRegistry.GetProjectContentForReference(a.GetName().Name, a.Location); 310 projectContent.AddReferencedContent(reference); 311 assemblies.Add(a); 312 } 305 313 ShowMessage("Ready"); 306 314 } 307 315 public void RemoveAssembly(Assembly a) { 308 316 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);317 if (assemblies.Contains(a)) { 318 var content = projectContentRegistry.GetExistingProjectContent(a.Location); 319 if (content != null) { 320 projectContent.ReferencedContents.Remove(content); 321 projectContentRegistry.UnloadProjectContent(content); 322 } 315 323 } 316 324 ShowMessage("Ready"); -
branches/HiveStatistics/sources/HeuristicLab.CodeEditor/3.3/CodeViewer.Designer.cs
r11203 r11205 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic 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/HiveStatistics/sources/HeuristicLab.CodeEditor/3.3/CodeViewer.cs
r11203 r11205 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic 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/HiveStatistics/sources/HeuristicLab.CodeEditor/3.3/ErrorBookmark.cs
r11203 r11205 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic 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/HiveStatistics/sources/HeuristicLab.CodeEditor/3.3/Plugin.cs.frame
r11203 r11205 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic 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. 7.$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/HiveStatistics/sources/HeuristicLab.CodeEditor/3.3/Properties/AssemblyInfo.cs.frame
r11203 r11205 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 2Heuristic 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 2HEAL & 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. 7.$WCREV$")]53 [assembly: AssemblyFileVersion("3.3.10.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.