[TYPO] Fix "disply" typos.

This commit is contained in:
Ricardo 2015-07-30 03:22:25 -03:00 committed by Don Ho
parent efbea233d2
commit 9b4e8888b0
4 changed files with 6 additions and 6 deletions

View File

@ -53,7 +53,7 @@ notepad++ [--help] [-multiInst] [-noPlugin] [-lLanguage] [-LlangCode] [-nLineNum
-openSession : Open a session. filePath must be a session file\r\ -openSession : Open a session. filePath must be a session file\r\
-r : Open files recursively. This argument will be ignored\r\ -r : Open files recursively. This argument will be ignored\r\
if filePath contain no wildcard character\r\ if filePath contain no wildcard character\r\
-qn : Launch ghost typing to disply easter egg via its name\r\ -qn : Launch ghost typing to display easter egg via its name\r\
-qt : Launch ghost typing to display a text via the given text\r\ -qt : Launch ghost typing to display a text via the given text\r\
-qf : Launch ghost typing to display a file content via the file path\r\ -qf : Launch ghost typing to display a file content via the file path\r\
filePath : file or folder name to open (absolute or relative path name)\r\ filePath : file or folder name to open (absolute or relative path name)\r\

View File

@ -1386,7 +1386,7 @@ INT_PTR CALLBACK RecentFilesHistoryDlg::run_dlgProc(UINT Message, WPARAM wParam,
// Check on launch time settings // Check on launch time settings
::SendDlgItemMessage(_hSelf, IDC_CHECK_DONTCHECKHISTORY, BM_SETCHECK, !nppGUI._checkHistoryFiles, 0); ::SendDlgItemMessage(_hSelf, IDC_CHECK_DONTCHECKHISTORY, BM_SETCHECK, !nppGUI._checkHistoryFiles, 0);
// Disply in submenu setting // Display in submenu setting
::SendDlgItemMessage(_hSelf, IDC_CHECK_INSUBMENU, BM_SETCHECK, pNppParam->putRecentFileInSubMenu(), 0); ::SendDlgItemMessage(_hSelf, IDC_CHECK_INSUBMENU, BM_SETCHECK, pNppParam->putRecentFileInSubMenu(), 0);
// Recent File menu entry length setting // Recent File menu entry length setting

View File

@ -760,7 +760,7 @@ void ProjectPanel::showContextMenu(int x, int y)
} }
} }
POINT ProjectPanel::getMenuDisplyPoint(int iButton) POINT ProjectPanel::getMenuDisplayPoint(int iButton)
{ {
POINT p; POINT p;
RECT btnRect; RECT btnRect;
@ -798,14 +798,14 @@ void ProjectPanel::popupMenuCmd(int cmdID)
// //
case IDB_PROJECT_BTN: case IDB_PROJECT_BTN:
{ {
POINT p = getMenuDisplyPoint(0); POINT p = getMenuDisplayPoint(0);
TrackPopupMenu(_hWorkSpaceMenu, TPM_LEFTALIGN, p.x, p.y, 0, _hSelf, NULL); TrackPopupMenu(_hWorkSpaceMenu, TPM_LEFTALIGN, p.x, p.y, 0, _hSelf, NULL);
} }
break; break;
case IDB_EDIT_BTN: case IDB_EDIT_BTN:
{ {
POINT p = getMenuDisplyPoint(1); POINT p = getMenuDisplayPoint(1);
HMENU hMenu = NULL; HMENU hMenu = NULL;
NodeType nodeType = getNodeType(hTreeItem); NodeType nodeType = getNodeType(hTreeItem);
if (nodeType == nodeType_project) if (nodeType == nodeType_project)

View File

@ -133,7 +133,7 @@ protected:
NodeType getNodeType(HTREEITEM hItem); NodeType getNodeType(HTREEITEM hItem);
void setWorkSpaceDirty(bool isDirty); void setWorkSpaceDirty(bool isDirty);
void popupMenuCmd(int cmdID); void popupMenuCmd(int cmdID);
POINT getMenuDisplyPoint(int iButton); POINT getMenuDisplayPoint(int iButton);
virtual INT_PTR CALLBACK run_dlgProc(UINT message, WPARAM wParam, LPARAM lParam); virtual INT_PTR CALLBACK run_dlgProc(UINT message, WPARAM wParam, LPARAM lParam);
bool buildTreeFrom(TiXmlNode *projectRoot, HTREEITEM hParentItem); bool buildTreeFrom(TiXmlNode *projectRoot, HTREEITEM hParentItem);
void notified(LPNMHDR notification); void notified(LPNMHDR notification);