From 8bbf210610804623aa581f3a547fc782fed9c118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20P=C3=B6sel?= Date: Sun, 19 May 2013 12:36:06 +0000 Subject: "PopUp" everywhere was replaced to "Popup" git-svn-id: http://svn.miranda-ng.org/main/trunk@4730 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/QuickMessages/src/main.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'plugins/QuickMessages') diff --git a/plugins/QuickMessages/src/main.cpp b/plugins/QuickMessages/src/main.cpp index c8aded16da..ce8db16a78 100644 --- a/plugins/QuickMessages/src/main.cpp +++ b/plugins/QuickMessages/src/main.cpp @@ -227,7 +227,7 @@ static int CustomButtonPressed(WPARAM wParam,LPARAM lParam) int menunum; ButtonData * bd=NULL; HMENU hMenu=NULL,hSubMenu=NULL; - BOOL bSetPopUpMark=FALSE; + BOOL bSetPopupMark=FALSE; if(g_iButtonsCount){ hMenu = CreatePopupMenu(); @@ -239,22 +239,22 @@ static int CustomButtonPressed(WPARAM wParam,LPARAM lParam) if(bd->dwOPFlags&QMF_NEW) continue; - bSetPopUpMark=FALSE; + bSetPopupMark=FALSE; if(bd->pszValue==0&&bd->fEntryType==0) { hSubMenu = CreatePopupMenu(); - bSetPopUpMark=TRUE; + bSetPopupMark=TRUE; } if(bd->pszValue&&bd->fEntryType==0) hSubMenu=NULL; if(bd->fEntryType&QMF_EX_SEPARATOR) - AppendMenu((HMENU)((hSubMenu&&!bSetPopUpMark)?hSubMenu:hMenu),MF_SEPARATOR,0,NULL); + AppendMenu((HMENU)((hSubMenu&&!bSetPopupMark)?hSubMenu:hMenu),MF_SEPARATOR,0,NULL); else - AppendMenu((HMENU)((hSubMenu&&!bSetPopUpMark)?hSubMenu:hMenu), - MF_STRING|(bSetPopUpMark?MF_POPUP:0), - (bSetPopUpMark?(UINT_PTR)hSubMenu:(menunum+1)), bd->pszName); + AppendMenu((HMENU)((hSubMenu&&!bSetPopupMark)?hSubMenu:hMenu), + MF_STRING|(bSetPopupMark?MF_POPUP:0), + (bSetPopupMark?(UINT_PTR)hSubMenu:(menunum+1)), bd->pszName); } res = TrackPopupMenu(hMenu, TPM_RETURNCMD, cbcd->pt.x, cbcd->pt.y, 0, cbcd->hwndFrom, NULL); -- cgit v1.2.3