Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 828b8f2

Browse files
committed
Renamed namespace
1 parent 0732ea8 commit 828b8f2

File tree

11 files changed

+11
-4
lines changed

11 files changed

+11
-4
lines changed

Visual Studio Project Template C#/GatewayDomain.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Runtime.InteropServices;
33
using System.Text;
4+
using Kbg.NppPluginNET.Integration;
45

56
namespace Kbg.NppPluginNET
67
{

Visual Studio Project Template C#/IScintillaGateway.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using Kbg.NppPluginNET.Integration;
23

34
namespace Kbg.NppPluginNET
45
{

Visual Studio Project Template C#/Integration/Docking_h.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System;
99
using System.Runtime.InteropServices;
1010

11-
namespace Kbg.NppPluginNET
11+
namespace Kbg.NppPluginNET.Integration
1212
{
1313

1414
[Flags]

Visual Studio Project Template C#/Integration/MenuCmdID_h.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// found at
66
// https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/menuCmdID.h
77

8-
namespace Kbg.NppPluginNET
8+
namespace Kbg.NppPluginNET.Integration
99
{
1010
public enum NppMenuCmd : uint
1111
{

Visual Studio Project Template C#/Integration/Msgs_h.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
using System;
99

10-
namespace Kbg.NppPluginNET
10+
namespace Kbg.NppPluginNET.Integration
1111
{
1212
class Constants
1313
{

Visual Studio Project Template C#/Integration/Scintilla_iface.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System;
99
using System.Runtime.InteropServices;
1010

11-
namespace Kbg.NppPluginNET
11+
namespace Kbg.NppPluginNET.Integration
1212
{
1313
[StructLayout(LayoutKind.Sequential)]
1414
public struct Sci_NotifyHeader

Visual Studio Project Template C#/Main.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System.Runtime.InteropServices;
66
using System.Text;
77
using System.Windows.Forms;
8+
using Kbg.NppPluginNET.Integration;
89

910
namespace Kbg.NppPluginNET
1011
{

Visual Studio Project Template C#/NppPluginNETBase.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using Kbg.NppPluginNET.Integration;
23

34
namespace Kbg.NppPluginNET
45
{

Visual Studio Project Template C#/NppPluginNETHelper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System.Collections.Generic;
55
using System.Drawing;
66
using System.Runtime.InteropServices;
7+
using Kbg.NppPluginNET.Integration;
78

89
namespace Kbg.NppPluginNET
910
{

Visual Studio Project Template C#/ScintillaGateway.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.Text;
3+
using Kbg.NppPluginNET.Integration;
34

45
namespace Kbg.NppPluginNET
56
{

0 commit comments

Comments
 (0)