summaryrefslogtreecommitdiff
path: root/plugins/SimpleAR
diff options
context:
space:
mode:
authorGoraf <22941576+Goraf@users.noreply.github.com>2017-11-13 15:03:31 +0100
committerGoraf <22941576+Goraf@users.noreply.github.com>2017-11-13 15:07:33 +0100
commita7c24ca48995cf2bf436156302f96b91bf135409 (patch)
tree953835509ff1b778833e78fd7b74b05e05e77c84 /plugins/SimpleAR
parent591ec17b1c99db7f120c22ca9fb20ae05fe78325 (diff)
Code modernize ...
* replace 0/NULL with nullptr [using clang-tidy]
Diffstat (limited to 'plugins/SimpleAR')
-rw-r--r--plugins/SimpleAR/src/Main.cpp20
-rw-r--r--plugins/SimpleAR/src/Options.cpp6
2 files changed, 13 insertions, 13 deletions
diff --git a/plugins/SimpleAR/src/Main.cpp b/plugins/SimpleAR/src/Main.cpp
index e4d87817d7..8feceb95bf 100644
--- a/plugins/SimpleAR/src/Main.cpp
+++ b/plugins/SimpleAR/src/Main.cpp
@@ -98,7 +98,7 @@ INT CheckDefaults(WPARAM, LPARAM)
interval = db_get_w(NULL, protocolname, KEY_REPEATINTERVAL, 300);
wchar_t *ptszVal = db_get_wsa(NULL, protocolname, KEY_HEADING);
- if (ptszVal == 0)
+ if (ptszVal == nullptr)
// Heading not set
db_set_ws(NULL, protocolname, KEY_HEADING, TranslateT("Dear %user%, the owner left the following message:"));
else
@@ -111,7 +111,7 @@ INT CheckDefaults(WPARAM, LPARAM)
char szStatus[6] = { 0 };
mir_snprintf(szStatus, "%d", c);
ptszVal = db_get_wsa(NULL, protocolname, szStatus);
- if (ptszVal == 0) {
+ if (ptszVal == nullptr) {
wchar_t *ptszDefault;
if (c < ID_STATUS_FREECHAT)
// This mode does not have a preset message
@@ -119,7 +119,7 @@ INT CheckDefaults(WPARAM, LPARAM)
else if (c > ID_STATUS_INVISIBLE)
ptszDefault = ptszDefaultMsg[c - ID_STATUS_ONLINE - 3];
else
- ptszDefault = 0;
+ ptszDefault = nullptr;
if (ptszDefault)
db_set_ws(NULL, protocolname, szStatus, TranslateW(ptszDefault));
}
@@ -165,7 +165,7 @@ INT addEvent(WPARAM hContact, LPARAM hDBEvent)
return FALSE;
wchar_t *ptszVal = db_get_wsa(hContact, "Protocol", "p");
- if (ptszVal == NULL) // Contact with no protocol ?!!
+ if (ptszVal == nullptr) // Contact with no protocol ?!!
return FALSE;
mir_free(ptszVal);
@@ -176,7 +176,7 @@ INT addEvent(WPARAM hContact, LPARAM hDBEvent)
return FALSE;
if (!(dbei.flags & DBEF_SENT)) {
- int timeBetween = time(NULL) - db_get_dw(hContact, protocolname, "LastReplyTS", 0);
+ int timeBetween = time(nullptr) - db_get_dw(hContact, protocolname, "LastReplyTS", 0);
if (timeBetween > interval || db_get_w(hContact, protocolname, "LastStatus", 0) != status) {
size_t msgLen = 1;
int isQun = db_get_b(hContact, pszProto, "IsQun", 0);
@@ -191,7 +191,7 @@ INT addEvent(WPARAM hContact, LPARAM hDBEvent)
CMStringW ptszTemp;
wchar_t *ptszNick = db_get_wsa(hContact, pszProto, "Nick");
- if (ptszNick == 0) {
+ if (ptszNick == nullptr) {
mir_free(ptszVal);
return FALSE;
}
@@ -199,7 +199,7 @@ INT addEvent(WPARAM hContact, LPARAM hDBEvent)
msgLen += mir_wstrlen(ptszVal);
wchar_t *ptszHead = db_get_wsa(NULL, protocolname, KEY_HEADING);
- if (ptszHead != NULL) {
+ if (ptszHead != nullptr) {
ptszTemp = ptszHead;
ptszTemp.Replace(L"%user%", ptszNick);
msgLen += mir_wstrlen(ptszTemp);
@@ -209,7 +209,7 @@ INT addEvent(WPARAM hContact, LPARAM hDBEvent)
wchar_t *ptszTemp2 = (wchar_t*)mir_alloc(sizeof(wchar_t) * (msgLen + 5));
mir_snwprintf(ptszTemp2, msgLen + 5, L"%s\r\n\r\n%s", ptszTemp.c_str(), ptszVal);
if (ServiceExists(MS_VARS_FORMATSTRING)) {
- ptszTemp = variables_parse(ptszTemp2, 0, hContact);
+ ptszTemp = variables_parse(ptszTemp2, nullptr, hContact);
}
else ptszTemp = Utils_ReplaceVarsW(ptszTemp2);
@@ -219,7 +219,7 @@ INT addEvent(WPARAM hContact, LPARAM hDBEvent)
dbei.eventType = EVENTTYPE_MESSAGE;
dbei.flags = DBEF_UTF | DBEF_SENT; //DBEF_READ;
dbei.szModule = pszProto;
- dbei.timestamp = time(NULL);
+ dbei.timestamp = time(nullptr);
dbei.cbBlob = (int)mir_strlen(pszUtf) + 1;
dbei.pBlob = (PBYTE)pszUtf;
db_event_add(hContact, &dbei);
@@ -232,7 +232,7 @@ INT addEvent(WPARAM hContact, LPARAM hDBEvent)
}
}
- db_set_dw(hContact, protocolname, "LastReplyTS", time(NULL));
+ db_set_dw(hContact, protocolname, "LastReplyTS", time(nullptr));
db_set_w(hContact, protocolname, "LastStatus", status);
}
return 0;
diff --git a/plugins/SimpleAR/src/Options.cpp b/plugins/SimpleAR/src/Options.cpp
index ee932589a6..c541651d96 100644
--- a/plugins/SimpleAR/src/Options.cpp
+++ b/plugins/SimpleAR/src/Options.cpp
@@ -1,6 +1,6 @@
#include "stdafx.h"
-wchar_t* ptszMessage[6]={0};
+wchar_t* ptszMessage[6]= {};
INT lastIndex=-1;
INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
@@ -123,9 +123,9 @@ INT_PTR CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara
continue;
else {
if (c<ID_STATUS_FREECHAT)
- ptszMessage[c - ID_STATUS_ONLINE - 1] = NULL;
+ ptszMessage[c - ID_STATUS_ONLINE - 1] = nullptr;
else if (c>ID_STATUS_INVISIBLE)
- ptszMessage[c - ID_STATUS_ONLINE - 3] = NULL;
+ ptszMessage[c - ID_STATUS_ONLINE - 3] = nullptr;
}
}
break;