Skip to content
This repository has been archived by the owner on Apr 13, 2020. It is now read-only.

Commit

Permalink
Set Output Pane name in Visual Studio Writer
Browse files Browse the repository at this point in the history
  • Loading branch information
philip pittle committed May 16, 2014
1 parent 18fcbb7 commit b637254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pMixins.VSPackage/Infrastructure/VisualStudioWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public VisualStudioWriter(DTE dte, System.IServiceProvider serviceProvider)

private EnvDTE.OutputWindowPane LoadOutputWindowPane(DTE dte)
{
string windowName = GetType().Name;
const string windowName = "pMixins Code Generator";
EnvDTE.OutputWindowPane pane = null;
EnvDTE.Window window = dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
if (window != null)
Expand Down

0 comments on commit b637254

Please sign in to comment.