summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/crypt_popups.cpp
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/SecureIM/src/crypt_popups.cpp
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/SecureIM/src/crypt_popups.cpp')
-rw-r--r--plugins/SecureIM/src/crypt_popups.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/plugins/SecureIM/src/crypt_popups.cpp b/plugins/SecureIM/src/crypt_popups.cpp
index 721dafd0b5..b584f5902d 100644
--- a/plugins/SecureIM/src/crypt_popups.cpp
+++ b/plugins/SecureIM/src/crypt_popups.cpp
@@ -1,6 +1,6 @@
#include "commonheaders.h"
-void showPopUp(LPCSTR lpzText,HANDLE hContact,HICON hIcon, UINT type)
+void showPopup(LPCSTR lpzText,HANDLE hContact,HICON hIcon, UINT type)
{
//type=0 key colors
//type=1 session colors
@@ -49,56 +49,56 @@ void showPopUp(LPCSTR lpzText,HANDLE hContact,HICON hIcon, UINT type)
ppd.colorBack = colorBack;
ppd.colorText = colorText;
ppd.iSeconds = timeout;
- PUAddPopUpW(&ppd);
+ PUAddPopupW(&ppd);
}
-void showPopUpDCmsg(HANDLE hContact,LPCSTR msg)
+void showPopupDCmsg(HANDLE hContact,LPCSTR msg)
{
if (db_get_b(0, MODULENAME, "dc", 1))
- showPopUp(msg, hContact, g_hPOP[POP_PU_DIS], 1);
+ showPopup(msg, hContact, g_hPOP[POP_PU_DIS], 1);
}
-void showPopUpDC(HANDLE hContact)
+void showPopupDC(HANDLE hContact)
{
if (db_get_b(0, MODULENAME, "dc", 1))
- showPopUp(sim006, hContact, g_hPOP[POP_PU_DIS], 1);
+ showPopup(sim006, hContact, g_hPOP[POP_PU_DIS], 1);
}
-void showPopUpEC(HANDLE hContact)
+void showPopupEC(HANDLE hContact)
{
if (db_get_b(0, MODULENAME, "ec", 1))
- showPopUp(sim001, hContact, g_hPOP[POP_PU_EST], 1);
+ showPopup(sim001, hContact, g_hPOP[POP_PU_EST], 1);
}
-void showPopUpKS(HANDLE hContact)
+void showPopupKS(HANDLE hContact)
{
if (db_get_b(0, MODULENAME, "ks",1))
- showPopUp(sim007, hContact, g_hPOP[POP_PU_PRC], 0);
+ showPopup(sim007, hContact, g_hPOP[POP_PU_PRC], 0);
}
-void showPopUpKRmsg(HANDLE hContact,LPCSTR msg)
+void showPopupKRmsg(HANDLE hContact,LPCSTR msg)
{
if (db_get_b(0, MODULENAME, "kr", 1))
- showPopUp(msg, hContact, g_hPOP[POP_PU_PRC], 0);
+ showPopup(msg, hContact, g_hPOP[POP_PU_PRC], 0);
}
-void showPopUpKR(HANDLE hContact)
+void showPopupKR(HANDLE hContact)
{
if (db_get_b(0, MODULENAME, "kr", 1))
- showPopUp(sim008, hContact, g_hPOP[POP_PU_PRC], 0);
+ showPopup(sim008, hContact, g_hPOP[POP_PU_PRC], 0);
}
-void showPopUpSM(HANDLE hContact)
+void showPopupSM(HANDLE hContact)
{
if (db_get_b(0, MODULENAME, "ss", 0))
- showPopUp(sim009, hContact, g_hPOP[POP_PU_MSS], 2);
+ showPopup(sim009, hContact, g_hPOP[POP_PU_MSS], 2);
SkinPlaySound("OutgoingSecureMessage");
}
-void showPopUpRM(HANDLE hContact)
+void showPopupRM(HANDLE hContact)
{
if (db_get_b(0, MODULENAME, "sr", 0))
- showPopUp(sim010, hContact, g_hPOP[POP_PU_MSR], 2);
+ showPopup(sim010, hContact, g_hPOP[POP_PU_MSR], 2);
SkinPlaySound("IncomingSecureMessage");
}