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

Commit 5861f8e

Browse files
committed
Fix some whitespace issues
Add EOL at EOF, remove some trailing whitespace.
1 parent 74d15a0 commit 5861f8e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ public void Dispose()
7474
Dispose();
7575
}
7676
}
77-
}
77+
}

Visual Studio Project Template C#/PluginInfrastructure/DllExport/DllExportAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ public DllExportAttribute(string exportName, CallingConvention callingConvention
2626

2727
public string ExportName { get; set; }
2828
}
29-
}
29+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public enum NppMenuCmd : uint
2020
IDM_FILE_SAVE = (IDM_FILE + 6),
2121
IDM_FILE_SAVEALL = (IDM_FILE + 7),
2222
IDM_FILE_SAVEAS = (IDM_FILE + 8),
23-
//IDM_FILE_ASIAN_LANG = (IDM_FILE + 9),
23+
//IDM_FILE_ASIAN_LANG = (IDM_FILE + 9),
2424
IDM_FILE_PRINT = (IDM_FILE + 10),
2525
IDM_FILE_PRINTNOW = 1001,
2626
IDM_FILE_EXIT = (IDM_FILE + 11),

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ internal static void SetCommand(int index, string commandName, NppFuncItemDelega
1212
{
1313
SetCommand(index, commandName, functionPointer, new ShortcutKey(), false);
1414
}
15-
15+
1616
internal static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, ShortcutKey shortcut)
1717
{
1818
SetCommand(index, commandName, functionPointer, shortcut, false);
1919
}
20-
20+
2121
internal static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, bool checkOnInit)
2222
{
2323
SetCommand(index, commandName, functionPointer, new ShortcutKey(), checkOnInit);
2424
}
25-
25+
2626
internal static void SetCommand(int index, string commandName, NppFuncItemDelegate functionPointer, ShortcutKey shortcut, bool checkOnInit)
2727
{
2828
FuncItem funcItem = new FuncItem();

0 commit comments

Comments
 (0)