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

Commit 45225ca

Browse files
committed
newlines
1 parent 4351e89 commit 45225ca

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Visual Studio Project Template C#/PluginInfrastructure/NppPluginNETBase.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ internal static void SetCommand(int index, string commandName, NppFuncItemDelega
1313
{
1414
SetCommand(index, commandName, functionPointer, new ShortcutKey(), false);
1515
}
16+
1617
internal static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, ShortcutKey shortcut)
1718
{
1819
SetCommand(index, commandName, functionPointer, shortcut, false);
1920
}
21+
2022
internal static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, bool checkOnInit)
2123
{
2224
SetCommand(index, commandName, functionPointer, new ShortcutKey(), checkOnInit);
2325
}
26+
2427
internal static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, ShortcutKey shortcut, bool checkOnInit)
2528
{
2629
FuncItem funcItem = new FuncItem();

0 commit comments

Comments
 (0)