Fisheye: Tag 2cef18fa35c5e50f0e08b5681f07d15208b21815 refers to a dead (removed) revision in file `Core/Common/src/Core.Common.Gui/Forms/IProjectExplorer.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: Core/Common/src/Core.Common.Gui/Forms/ProjectExplorer/IProjectExplorer.cs
===================================================================
diff -u
--- Core/Common/src/Core.Common.Gui/Forms/ProjectExplorer/IProjectExplorer.cs (revision 0)
+++ Core/Common/src/Core.Common.Gui/Forms/ProjectExplorer/IProjectExplorer.cs (revision 2cef18fa35c5e50f0e08b5681f07d15208b21815)
@@ -0,0 +1,31 @@
+// Copyright (C) Stichting Deltares 2021. All rights reserved.
+//
+// This file is part of Riskeer.
+//
+// Riskeer is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Lesser General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this program. If not, see .
+//
+// All names, logos, and references to "Deltares" are registered trademarks of
+// Stichting Deltares and remain full property of Stichting Deltares at all times.
+// All rights reserved.
+
+using Core.Common.Base.Data;
+using Core.Common.Controls.Views;
+
+namespace Core.Common.Gui.Forms.ProjectExplorer
+{
+ ///
+ /// View to show the contents of a instance.
+ ///
+ public interface IProjectExplorer : ISelectionProvider, IView {}
+}
\ No newline at end of file
Index: Core/Common/src/Core.Common.Gui/GuiCore.cs
===================================================================
diff -u -r3d088548dfdebfd5c3adbbd67075b42e134f5c03 -r2cef18fa35c5e50f0e08b5681f07d15208b21815
--- Core/Common/src/Core.Common.Gui/GuiCore.cs (.../GuiCore.cs) (revision 3d088548dfdebfd5c3adbbd67075b42e134f5c03)
+++ Core/Common/src/Core.Common.Gui/GuiCore.cs (.../GuiCore.cs) (revision 2cef18fa35c5e50f0e08b5681f07d15208b21815)
@@ -35,9 +35,9 @@
using Core.Common.Controls.Views;
using Core.Common.Gui.Commands;
using Core.Common.Gui.ContextMenu;
-using Core.Common.Gui.Forms;
using Core.Common.Gui.Forms.MainWindow;
using Core.Common.Gui.Forms.MessageWindow;
+using Core.Common.Gui.Forms.ProjectExplorer;
using Core.Common.Gui.Forms.PropertyGridView;
using Core.Common.Gui.Forms.ViewHost;
using Core.Common.Gui.Helpers;
Index: Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorer.cs
===================================================================
diff -u -rcbde09a1860a8a4480b958d6671de3480b995886 -r2cef18fa35c5e50f0e08b5681f07d15208b21815
--- Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorer.cs (.../ProjectExplorer.cs) (revision cbde09a1860a8a4480b958d6671de3480b995886)
+++ Core/Plugins/src/Core.Plugins.ProjectExplorer/ProjectExplorer.cs (.../ProjectExplorer.cs) (revision 2cef18fa35c5e50f0e08b5681f07d15208b21815)
@@ -24,7 +24,7 @@
using System.Windows.Forms;
using Core.Common.Controls.TreeView;
using Core.Common.Gui.Commands;
-using Core.Common.Gui.Forms;
+using Core.Common.Gui.Forms.ProjectExplorer;
using Core.Common.Util.Events;
using Core.Plugins.ProjectExplorer.Properties;
Index: Core/Plugins/test/Core.Plugins.ProjectExplorer.Test/ProjectExplorerTest.cs
===================================================================
diff -u -rcbde09a1860a8a4480b958d6671de3480b995886 -r2cef18fa35c5e50f0e08b5681f07d15208b21815
--- Core/Plugins/test/Core.Plugins.ProjectExplorer.Test/ProjectExplorerTest.cs (.../ProjectExplorerTest.cs) (revision cbde09a1860a8a4480b958d6671de3480b995886)
+++ Core/Plugins/test/Core.Plugins.ProjectExplorer.Test/ProjectExplorerTest.cs (.../ProjectExplorerTest.cs) (revision 2cef18fa35c5e50f0e08b5681f07d15208b21815)
@@ -27,7 +27,7 @@
using Core.Common.Base.Data;
using Core.Common.Controls.TreeView;
using Core.Common.Gui.Commands;
-using Core.Common.Gui.Forms;
+using Core.Common.Gui.Forms.ProjectExplorer;
using Core.Common.TestUtil;
using Core.Common.Util.Reflection;
using NUnit.Extensions.Forms;