From 934ded9ac99f9562bfc161f7b776435560d2fb9f Mon Sep 17 00:00:00 2001 From: Don HO Date: Mon, 23 Dec 2019 11:44:37 +0500 Subject: [PATCH] Fix a minor cosmetic problem --- PowerEditor/src/NppNotification.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PowerEditor/src/NppNotification.cpp b/PowerEditor/src/NppNotification.cpp index 70a1688f..335de71c 100644 --- a/PowerEditor/src/NppNotification.cpp +++ b/PowerEditor/src/NppNotification.cpp @@ -253,8 +253,8 @@ BOOL Notepad_plus::notify(SCNotification *notification) { if (!_tabPopupDropMenu.isCreated()) { - TCHAR goToView[32] = TEXT("Move to other view"); - TCHAR cloneToView[32] = TEXT("Clone to other View"); + TCHAR goToView[32] = TEXT("Move to Other View"); + TCHAR cloneToView[32] = TEXT("Clone to Other View"); vector itemUnitArray; itemUnitArray.push_back(MenuItemUnit(IDM_VIEW_GOTO_ANOTHER_VIEW, goToView)); itemUnitArray.push_back(MenuItemUnit(IDM_VIEW_CLONE_TO_ANOTHER_VIEW, cloneToView));