Skip to content

Commit

Permalink
preparation for the next Build
Browse files Browse the repository at this point in the history
  • Loading branch information
daddel80 committed Sep 18, 2023
1 parent 30f2f42 commit 2c09cd0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/DockingFeature/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ CAPTION "MultiReplace Plugin"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
DEFPUSHBUTTON "OK", IDOK, 70, 110, 60, 20
LTEXT "Version: 1.1.0.5", IDC_VERSION_STATIC, 20, 20, 200, 11
LTEXT "Version: 1.1.1.6", IDC_VERSION_STATIC, 20, 20, 200, 11
CONTROL "Author:", IDC_AUTHOR_STATIC, "Static", SS_LEFT | WS_VISIBLE, 20, 40, 60, 11
CONTROL "Thomas Knoefel", IDC_NAME_STATIC, "Static", SS_NOTIFY | WS_VISIBLE, 60, 40, 100, 11
LTEXT "License: GPLv2", IDC_LICENSE_STATIC, 20, 60, 200, 11
Expand Down
4 changes: 2 additions & 2 deletions src/MultiReplace.rc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
/* VERSION DEFINITIONS */
#define VER_MAJOR 1
#define VER_MINOR 1
#define VER_RELEASE 0
#define VER_BUILD 5
#define VER_RELEASE 1
#define VER_BUILD 6
#define VER_STRING STR(VER_MAJOR) "." STR(VER_MINOR) "." STR(VER_RELEASE) "." STR(VER_BUILD)

VS_VERSION_INFO VERSIONINFO
Expand Down
2 changes: 1 addition & 1 deletion src/MultiReplacePanel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ void MultiReplace::positionAndResizeControls(int windowWidth, int windowHeight)
ctrlMap[IDC_REPLACE_ALL_BUTTON] = { buttonX, 108, 160, 30, WC_BUTTON, L"Replace All", BS_PUSHBUTTON | WS_TABSTOP, NULL };
ctrlMap[IDC_REPLACE_BUTTON] = { buttonX, 108, 120, 30, WC_BUTTON, L"Replace", BS_PUSHBUTTON | WS_TABSTOP, NULL };
ctrlMap[IDC_REPLACE_ALL_SMALL_BUTTON] = { buttonX + 125, 108, 35, 30, WC_BUTTON, L"\u066D", BS_PUSHBUTTON | WS_TABSTOP, L"Replace All" };
ctrlMap[IDC_2_BUTTONS_MODE] = { checkbox2X, 108, 25, 25, WC_BUTTON, L"", BS_AUTOCHECKBOX | WS_TABSTOP, L"2 buttons mode" };
ctrlMap[IDC_2_BUTTONS_MODE] = { checkbox2X, 108, 25, 25, WC_BUTTON, L" ", BS_AUTOCHECKBOX | WS_TABSTOP, L"2 buttons mode" };
ctrlMap[IDC_FIND_BUTTON] = { buttonX, 143, 160, 30, WC_BUTTON, L"Find Next", BS_PUSHBUTTON | WS_TABSTOP, NULL };
ctrlMap[IDC_FIND_NEXT_BUTTON] = { buttonX + 40, 143, 120, 30, WC_BUTTON, L"\u25BC Find Next", BS_PUSHBUTTON | WS_TABSTOP, NULL };
ctrlMap[IDC_FIND_PREV_BUTTON] = { buttonX, 143, 35, 30, WC_BUTTON, L"\u25B2", BS_PUSHBUTTON | WS_TABSTOP, NULL };
Expand Down

0 comments on commit 2c09cd0

Please sign in to comment.