diff --git a/src/AddIns/Analysis/Profiler/Frontend/AddIn/Profiler.AddIn.csproj b/src/AddIns/Analysis/Profiler/Frontend/AddIn/Profiler.AddIn.csproj index 1effee234f..ce1d821b96 100644 --- a/src/AddIns/Analysis/Profiler/Frontend/AddIn/Profiler.AddIn.csproj +++ b/src/AddIns/Analysis/Profiler/Frontend/AddIn/Profiler.AddIn.csproj @@ -102,7 +102,7 @@ - + diff --git a/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/ProfilerDisplayBinding.cs b/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/ProfilerDisplayBinding.cs index b44bf76f29..35b3ba729e 100644 --- a/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/ProfilerDisplayBinding.cs +++ b/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/ProfilerDisplayBinding.cs @@ -44,7 +44,7 @@ namespace ICSharpCode.Profiler.AddIn.Views return null; } } - return new WpfViewer(file, provider); + return new ProfilingReportViewer(file, provider); } public bool IsPreferredBindingForFile(FileName fileName) diff --git a/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/WpfViewer.cs b/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/ProfilingReportViewer.cs similarity index 89% rename from src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/WpfViewer.cs rename to src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/ProfilingReportViewer.cs index 99d008188f..3023e7758e 100644 --- a/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/WpfViewer.cs +++ b/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Views/ProfilingReportViewer.cs @@ -10,11 +10,10 @@ using ICSharpCode.SharpDevelop.Workbench; namespace ICSharpCode.Profiler.AddIn.Views { - /// - /// Description of the view content + /// ViewContent that displays profiling session results. /// - public class WpfViewer : AbstractViewContent + public class ProfilingReportViewer : AbstractViewContent { ProfilingDataProvider provider; ProfilerView dataView; @@ -37,10 +36,7 @@ namespace ICSharpCode.Profiler.AddIn.Views get { return file.FileName; } } - /// - /// Creates a new WpfViewer object - /// - public WpfViewer(OpenedFile file, ProfilingDataSQLiteProvider provider) + public ProfilingReportViewer(OpenedFile file, ProfilingDataSQLiteProvider provider) { // HACK : OpenedFile architecture does not allow to keep files open // but it is necessary for the ProfilerView to keep the session file open.