summaryrefslogtreecommitdiff
path: root/plugins/WhenWasIt
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-05-19 12:36:06 +0000
committerRobert Pösel <robyer@seznam.cz>2013-05-19 12:36:06 +0000
commit8bbf210610804623aa581f3a547fc782fed9c118 (patch)
treeb824cb7b0aba1740501e861ee78dbd49bac65022 /plugins/WhenWasIt
parent02f6b3a61924a143b3a6db44d3428a651a3b979c (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/WhenWasIt')
-rw-r--r--plugins/WhenWasIt/src/dlg_handlers.cpp2
-rw-r--r--plugins/WhenWasIt/src/notifiers.cpp6
-rw-r--r--plugins/WhenWasIt/src/services.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/WhenWasIt/src/dlg_handlers.cpp b/plugins/WhenWasIt/src/dlg_handlers.cpp
index c13d4cc428..92817875f7 100644
--- a/plugins/WhenWasIt/src/dlg_handlers.cpp
+++ b/plugins/WhenWasIt/src/dlg_handlers.cpp
@@ -962,7 +962,7 @@ int HandlePopupClick(HWND hWnd, int action)
}//fallthrough
case 1: //DISMISS
- PUDeletePopUp(hWnd);
+ PUDeletePopup(hWnd);
break;
}
diff --git a/plugins/WhenWasIt/src/notifiers.cpp b/plugins/WhenWasIt/src/notifiers.cpp
index 4d02d6ff0e..98dbef5e6f 100644
--- a/plugins/WhenWasIt/src/notifiers.cpp
+++ b/plugins/WhenWasIt/src/notifiers.cpp
@@ -37,7 +37,7 @@ void PopupNotifyNoBirthdays()
_tcscpy(pd.lptzContactName, TranslateT("WhenWasIt"));
_tcscpy(pd.lptzText, TranslateT("No upcoming birthdays."));
- PUAddPopUpT(&pd);
+ PUAddPopupT(&pd);
}
TCHAR *BuildDTBText(int dtb, TCHAR *name, TCHAR *text, int size)
@@ -105,7 +105,7 @@ int PopupNotifyBirthday(HANDLE hContact, int dtb, int age)
else
mir_sntprintf(pd.lptzText, MAX_SECONDLINE, TranslateT("%s\n%s just turned %d."), text, sex, age);
- PUAddPopUpT(&pd);
+ PUAddPopupT(&pd);
free(name);
return 0;
@@ -149,7 +149,7 @@ int PopupNotifyMissedBirthday(HANDLE hContact, int dab, int age)
else
mir_sntprintf(pd.lptzText, MAX_SECONDLINE, TranslateT("%s\n%s just turned %d."), text, sex, age);
- PUAddPopUpT(&pd);
+ PUAddPopupT(&pd);
free(name);
return 0;
diff --git a/plugins/WhenWasIt/src/services.cpp b/plugins/WhenWasIt/src/services.cpp
index dd61f51c49..f9f43b2318 100644
--- a/plugins/WhenWasIt/src/services.cpp
+++ b/plugins/WhenWasIt/src/services.cpp
@@ -185,7 +185,7 @@ void ShowPopupMessage(TCHAR *title, TCHAR *message, HANDLE icon)
_tcscpy(pd.lptzText, message);
pd.colorText = commonData.foreground;
pd.colorBack = commonData.background;
- PUAddPopUpT(&pd);
+ PUAddPopupT(&pd);
}
DWORD WINAPI RefreshUserDetailsWorkerThread(LPVOID param)