diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-05-19 12:36:06 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-05-19 12:36:06 +0000 |
commit | 8bbf210610804623aa581f3a547fc782fed9c118 (patch) | |
tree | b824cb7b0aba1740501e861ee78dbd49bac65022 /plugins/DbEditorPP/src/main.cpp | |
parent | 02f6b3a61924a143b3a6db44d3428a651a3b979c (diff) |
"PopUp" everywhere was replaced to "Popup"
git-svn-id: http://svn.miranda-ng.org/main/trunk@4730 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/DbEditorPP/src/main.cpp')
-rw-r--r-- | plugins/DbEditorPP/src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/DbEditorPP/src/main.cpp b/plugins/DbEditorPP/src/main.cpp index 9dbef4d387..11641cc3bb 100644 --- a/plugins/DbEditorPP/src/main.cpp +++ b/plugins/DbEditorPP/src/main.cpp @@ -4,7 +4,7 @@ HINSTANCE hInst = NULL; HANDLE hTTBButt = NULL;
BOOL bServiceMode = FALSE;
-BOOL usePopUps;
+BOOL usePopups;
HWND hwnd2watchedVarsWindow;
int hLangpack;
BYTE nameOrder[NAMEORDERCOUNT];
@@ -85,7 +85,7 @@ int DBSettingChanged(WPARAM wParam,LPARAM lParam) }
}
// watch list
- if (!hwnd2watchedVarsWindow && !usePopUps) return 0;
+ if (!hwnd2watchedVarsWindow && !usePopups) return 0;
for (i=0; i<WatchListArray.count; i++)
{
@@ -95,7 +95,7 @@ int DBSettingChanged(WPARAM wParam,LPARAM lParam) {
if (!WatchListArray.item[i].setting || !mir_strcmp(cws->szSetting, WatchListArray.item[i].setting))
{
- if (usePopUps)
+ if (usePopups)
popupWatchedVar(hContact, cws->szModule, cws->szSetting);
if (hwnd2watchedVarsWindow)
PopulateWatchedWindow(GetDlgItem(hwnd2watchedVarsWindow, IDC_VARS));
@@ -221,7 +221,7 @@ int ModulesLoaded(WPARAM wParam,LPARAM lParam) db_free(&dbv);
UnhookEvent(hModulesLoadedHook);
- usePopUps = db_get_b(NULL,modname,"UsePopUps",0);
+ usePopups = db_get_b(NULL,modname,"UsePopups",0);
// Load the name order
for(i=0; i < NAMEORDERCOUNT; i++)
|