Parameters: fixed alignment (indent with tabs, align with spaces)

This commit is contained in:
Damien GERARD 2015-08-14 22:42:56 +02:00
parent a53c25499e
commit 6e6ca7fe12

View File

@ -38,7 +38,11 @@
using namespace std;
struct WinMenuKeyDefinition { //more or less matches accelerator table definition, easy copy/paste
struct WinMenuKeyDefinition //more or less matches accelerator table definition, easy copy/paste
{
//const TCHAR * name; //name retrieved from menu?
int vKey;
int functionId;
@ -49,7 +53,8 @@ struct WinMenuKeyDefinition { //more or less matches accelerator table definitio
};
struct ScintillaKeyDefinition {
struct ScintillaKeyDefinition
{
const TCHAR * name;
int functionId;
bool isCtrl;
@ -59,7 +64,9 @@ struct ScintillaKeyDefinition {
int redirFunctionId; //this gets set when a function is being redirected through Notepad++ if Scintilla doesnt do it properly :)
};
WinMenuKeyDefinition winKeyDefs[] = {
WinMenuKeyDefinition winKeyDefs[] =
{
//array of accelerator keys for all std menu items, values can be 0 for vKey, which means its unused
//================================================================================
// {V_KEY, COMMAND_ID, Ctrl, Alt, Shift, cmdName},
@ -324,7 +331,6 @@ WinMenuKeyDefinition winKeyDefs[] = {
{VK_4, IDM_SEARCH_GONEXTMARKER4, true, false, false, NULL},
{VK_5, IDM_SEARCH_GONEXTMARKER5, true, false, false, NULL},
{VK_0, IDM_SEARCH_GONEXTMARKER_DEF, true, false, false, NULL}
};