- spelling fixes (prefered -> preferred)
- add ", {0, 0}, 0, 0" in comment lines - update copyright statement
This commit is contained in:
parent
72f73ac452
commit
0d5d71999f
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2000, 2003 Martin Fuchs
|
||||
* Copyright 2000, 2003, 2005 Martin Fuchs
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -68,7 +68,7 @@
|
|||
#define ID_NO_WARRANTY 0x8002
|
||||
#define ID_WINDOW_AUTOSORT 0x8003
|
||||
#define ID_VIEW_FULLSCREEN 0x8004
|
||||
#define ID_PREFERED_SIZES 0x8005
|
||||
#define ID_PREFERRED_SIZES 0x8005
|
||||
|
||||
/* string table */
|
||||
#define IDS_FONT_SEL_DLG_NAME 1101
|
||||
|
|
|
@ -25,7 +25,7 @@ IDA_WINEFILE ACCELERATORS DISCARDABLE
|
|||
#ifndef _NO_EXTENSIONS
|
||||
"X", ID_FILE_EXIT, VIRTKEY, ALT, NOINVERT
|
||||
"S", ID_VIEW_FULLSCREEN, VIRTKEY, SHIFT, CONTROL, NOINVERT
|
||||
VK_ADD, ID_PREFERED_SIZES, VIRTKEY, CONTROL, NOINVERT
|
||||
VK_ADD, ID_PREFERRED_SIZES, VIRTKEY, CONTROL, NOINVERT
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -3386,7 +3386,7 @@ static BOOL pane_command(Pane* pane, UINT cmd)
|
|||
break;
|
||||
|
||||
#ifndef _NO_EXTENSIONS
|
||||
case ID_PREFERED_SIZES: {
|
||||
case ID_PREFERRED_SIZES: {
|
||||
calc_widths(pane, TRUE);
|
||||
set_header(pane);
|
||||
InvalidateRect(pane->hwnd, 0, TRUE);
|
||||
|
@ -4066,8 +4066,8 @@ void show_frame(HWND hwndParent, int cmdshow)
|
|||
{2, ID_WINDOW_TILE_HORZ, TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
|
||||
{3, ID_WINDOW_TILE_VERT, TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
|
||||
/*TODO
|
||||
{4, ID_... , TBSTATE_ENABLED, BTNS_BUTTON},
|
||||
{5, ID_... , TBSTATE_ENABLED, BTNS_BUTTON},
|
||||
{4, ID_... , TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
|
||||
{5, ID_... , TBSTATE_ENABLED, BTNS_BUTTON, {0, 0}, 0, 0},
|
||||
*/ };
|
||||
|
||||
Globals.htoolbar = CreateToolbarEx(Globals.hMainWnd, WS_CHILD|WS_VISIBLE,
|
||||
|
|
Loading…
Reference in New Issue