Changeset 2308
- Timestamp:
- 08/24/09 13:57:01 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.MainForm/3.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm/3.2/DockingMainForm.cs
r2306 r2308 74 74 ActiveView = null; 75 75 76 base.ViewClosed(dockForm.View);76 ViewClosed(dockForm.View); 77 77 dockForm.Activated -= new EventHandler(DockFormActivated); 78 78 dockForm.FormClosing -= new FormClosingEventHandler(dockForm.View.FormClosing); -
trunk/sources/HeuristicLab.MainForm/3.2/MultipleDocumentMainForm.cs
r2306 r2308 85 85 ActiveView = null; 86 86 87 base.ViewClosed(form.View);87 ViewClosed(form.View); 88 88 form.Activated -= new EventHandler(MultipleDocumentFormActivated); 89 89 form.FormClosing -= new FormClosingEventHandler(form.View.FormClosing); -
trunk/sources/HeuristicLab.MainForm/3.2/SingleDocumentMainForm.cs
r2306 r2308 75 75 ActiveView = null; 76 76 77 base.ViewClosed(form.View);77 ViewClosed(form.View); 78 78 form.Activated -= new EventHandler(DockFormActivated); 79 79 form.FormClosing -= new FormClosingEventHandler(form.View.FormClosing);
Note: See TracChangeset
for help on using the changeset viewer.