diff options
Diffstat (limited to 'plugins/UserInfoEx/src/mir_db.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/mir_db.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/UserInfoEx/src/mir_db.cpp b/plugins/UserInfoEx/src/mir_db.cpp index 689e364cc7..2898d3980a 100644 --- a/plugins/UserInfoEx/src/mir_db.cpp +++ b/plugins/UserInfoEx/src/mir_db.cpp @@ -61,7 +61,7 @@ BYTE Delete(MCONTACT hContact) /**
* This function trys to guess, when an ICQ contact was added to database.
**/
-DWORD WhenAdded(DWORD dwUIN, LPCSTR pszProto)
+DWORD WhenAdded(DWORD dwUIN, LPCSTR)
{
DBEVENTINFO dbei = { sizeof(dbei) };
for (MEVENT edbe = db_event_first(NULL); edbe != NULL; edbe = db_event_next(NULL, edbe)) {
@@ -106,7 +106,7 @@ void Delete(MCONTACT hContact, LPCSTR pszModule) * @retval TRUE - always true
**/
-static int IsEmptyEnumProc(LPCSTR pszSetting, LPARAM lParam)
+static int IsEmptyEnumProc(LPCSTR, LPARAM)
{
return 1;
}
@@ -700,7 +700,7 @@ bool Exists(MCONTACT hContact, MEVENT& hDbExistingEvent, DBEVENTINFO *dbei) } /* namespace Events */
-int CEnumList::EnumProc(LPCSTR pszName, DWORD ofsModuleName, LPARAM lParam)
+int CEnumList::EnumProc(LPCSTR pszName, DWORD, LPARAM lParam)
{
if (pszName)
((CEnumList*)lParam)->Insert(pszName);
|