Skip to content

Commit 972b62e

Browse files
committed
Rename namespace
1 parent 8713af9 commit 972b62e

16 files changed

+19
-19
lines changed

Direct2DWrapper/DrawRectangle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,4 +599,4 @@ namespace Direct2DWrapper
599599
return hr;
600600
}
601601

602-
}
602+
} // namespace Direct2DWrapper

Direct2DWrapper/DrawRectangle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ namespace Direct2DWrapper
8989

9090
DIRECT2DWRAPPER_C_FUNCTION
9191
HRESULT SaveImage(struct Direct2DCanvas* pCanvas, PCWSTR filename);
92-
}
92+
} // namespace Direct2DWrapper
9393

MessageToImage/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="TextFormatter.App"
1+
<Application x:Class="uk.JohnCook.dotnet.MessageToImage.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:TextFormatter"
4+
xmlns:local="clr-namespace:uk.JohnCook.dotnet.MessageToImage"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
77

MessageToImage/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.Threading.Tasks;
77
using System.Windows;
88

9-
namespace TextFormatter
9+
namespace uk.JohnCook.dotnet.MessageToImage
1010
{
1111
/// <summary>
1212
/// Interaction logic for App.xaml

MessageToImage/Interop/Direct2DCanvas.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Runtime.InteropServices;
44
using System.Text;
55

6-
namespace TextFormatter.Interop
6+
namespace uk.JohnCook.dotnet.MessageToImage.Interop
77
{
88
[StructLayout(LayoutKind.Sequential)]
99
public struct Direct2DCanvas

MessageToImage/Interop/Direct2DPointers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Runtime.InteropServices;
44
using System.Text;
55

6-
namespace TextFormatter.Interop
6+
namespace uk.JohnCook.dotnet.MessageToImage.Interop
77
{
88
[StructLayout(LayoutKind.Sequential)]
99
public struct Direct2DPointers

MessageToImage/Interop/FontSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Runtime.InteropServices;
44
using System.Text;
55

6-
namespace TextFormatter.Interop
6+
namespace uk.JohnCook.dotnet.MessageToImage.Interop
77
{
88
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
99
public struct FontSettings

MessageToImage/Interop/PointF.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Runtime.InteropServices;
44
using System.Text;
55

6-
namespace TextFormatter.Interop
6+
namespace uk.JohnCook.dotnet.MessageToImage.Interop
77
{
88
[StructLayout(LayoutKind.Sequential)]
99
public struct PointF

MessageToImage/Interop/RectF.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Runtime.InteropServices;
44
using System.Text;
55

6-
namespace TextFormatter.Interop
6+
namespace uk.JohnCook.dotnet.MessageToImage.Interop
77
{
88
[StructLayout(LayoutKind.Sequential)]
99
public struct RectF

MessageToImage/Interop/SizeU.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Runtime.InteropServices;
44
using System.Text;
55

6-
namespace TextFormatter.Interop
6+
namespace uk.JohnCook.dotnet.MessageToImage.Interop
77
{
88
[StructLayout(LayoutKind.Sequential)]
99
public struct SizeU

0 commit comments

Comments
 (0)