Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 677328b

Browse files
Fixing namespace
1 parent 215bb26 commit 677328b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/GitHub.VisualStudio.UI/UI/Controls/PullRequestStatusCircle.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<UserControl x:Class="GitHub.VisualStudio.UI.UI.Controls.PullRequestStatusCircle"
1+
<UserControl x:Class="GitHub.VisualStudio.UI.Controls.PullRequestStatusCircle"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6-
xmlns:local="clr-namespace:GitHub.VisualStudio.UI.UI.Controls"
6+
xmlns:local="clr-namespace:GitHub.VisualStudio.UI.Controls"
77
mc:Ignorable="d"
88
d:DesignHeight="250" d:DesignWidth="250">
99
<Grid>

src/GitHub.VisualStudio.UI/UI/Controls/PullRequestStatusCircle.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
using System.Windows.Shapes;
1515
using ReactiveUI;
1616

17-
namespace GitHub.VisualStudio.UI.UI.Controls
17+
namespace GitHub.VisualStudio.UI.Controls
1818
{
1919
/// <summary>
2020
/// Interaction logic for PullRequestStatusCircle.xaml

src/GitHub.VisualStudio.UI/Views/GitHubPane/PullRequestListItemView.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:ghfvs="https://github.com/github/VisualStudio"
77
xmlns:views="clr-namespace:GitHub.VisualStudio.Views"
8-
xmlns:controls="clr-namespace:GitHub.VisualStudio.UI.UI.Controls"
8+
xmlns:controls="clr-namespace:GitHub.VisualStudio.UI.Controls"
99
mc:Ignorable="d" d:DesignWidth="300"
1010
Padding="0 4">
1111
<d:DesignData.DataContext>

0 commit comments

Comments
 (0)