From 05636e0ffc35b0f1b6c9337573914ce246afa775 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 8 Apr 2016 16:33:41 +0000 Subject: code clesning git-svn-id: http://svn.miranda-ng.org/main/trunk@16615 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Variables/src/parse_miranda.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/Variables/src/parse_miranda.cpp') diff --git a/plugins/Variables/src/parse_miranda.cpp b/plugins/Variables/src/parse_miranda.cpp index 4e3251e123..e6431a19cb 100644 --- a/plugins/Variables/src/parse_miranda.cpp +++ b/plugins/Variables/src/parse_miranda.cpp @@ -109,7 +109,7 @@ static TCHAR* parseContactInfo(ARGUMENTSINFO *ai) if (ai->argc != 3) return NULL; - MCONTACT hContact = getContactFromString(ai->targv[1], 0xFFFFFFFF); + MCONTACT hContact = getContactFromString(ai->targv[1], CI_ALLFLAGS); if (hContact == INVALID_CONTACT_ID) return NULL; @@ -183,7 +183,7 @@ static TCHAR* parseDBSetting(ARGUMENTSINFO *ai) MCONTACT hContact = NULL; if (mir_tstrlen(ai->targv[1]) > 0) { - hContact = getContactFromString(ai->targv[1], 0xFFFFFFFF); + hContact = getContactFromString(ai->targv[1], CI_ALLFLAGS); if (hContact == INVALID_CONTACT_ID) return NULL; } @@ -211,7 +211,7 @@ static TCHAR* parseLastSeenDate(ARGUMENTSINFO *ai) if (ai->argc <= 1) return NULL; - MCONTACT hContact = getContactFromString(ai->targv[1], 0xFFFFFFFF); + MCONTACT hContact = getContactFromString(ai->targv[1], CI_ALLFLAGS); if (hContact == INVALID_CONTACT_ID) return NULL; @@ -253,7 +253,7 @@ static TCHAR* parseLastSeenTime(ARGUMENTSINFO *ai) if (ai->argc <= 1) return NULL; - MCONTACT hContact = getContactFromString(ai->targv[1], 0xFFFFFFFF); + MCONTACT hContact = getContactFromString(ai->targv[1], CI_ALLFLAGS); if (hContact == INVALID_CONTACT_ID) return NULL; @@ -296,7 +296,7 @@ static TCHAR* parseLastSeenStatus(ARGUMENTSINFO *ai) if (ai->argc != 2) return NULL; - MCONTACT hContact = getContactFromString(ai->targv[1], 0xFFFFFFFF); + MCONTACT hContact = getContactFromString(ai->targv[1], CI_ALLFLAGS); if (hContact == INVALID_CONTACT_ID) return NULL; @@ -570,7 +570,7 @@ static TCHAR* parseDbEvent(ARGUMENTSINFO *ai) break; } - MCONTACT hContact = getContactFromString(ai->targv[1], 0xFFFFFFFF); + MCONTACT hContact = getContactFromString(ai->targv[1], CI_ALLFLAGS); if (hContact == INVALID_CONTACT_ID) return NULL; -- cgit v1.2.3