summaryrefslogtreecommitdiff
path: root/protocols/WebView/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2022-07-31 18:07:27 +0300
committerGeorge Hazan <ghazan@miranda.im>2022-07-31 18:07:27 +0300
commit500dd4848842f6d4207584417448586d060fbd6a (patch)
tree569ac641e814da1d706d36b12eaf35183a3ce7a5 /protocols/WebView/src
parentb47e4b4b32698470bf52c0dc1c2d1af56c46c9b5 (diff)
Contact: group of functions gathered into the personal namespace
Diffstat (limited to 'protocols/WebView/src')
-rw-r--r--protocols/WebView/src/webview_services.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/protocols/WebView/src/webview_services.cpp b/protocols/WebView/src/webview_services.cpp
index a7cd69441f..2eef900ee9 100644
--- a/protocols/WebView/src/webview_services.cpp
+++ b/protocols/WebView/src/webview_services.cpp
@@ -351,9 +351,9 @@ INT_PTR AddToList(WPARAM, LPARAM lParam)
// contact visible
// and add them on the list
sameurl++;
- if (!Contact_OnList(hContact)) {
- Contact_PutOnList(hContact);
- Contact_Hide(hContact, false);
+ if (!Contact::OnList(hContact)) {
+ Contact::PutOnList(hContact);
+ Contact::Hide(hContact, false);
}
}
db_free(&dbv);
@@ -402,9 +402,9 @@ INT_PTR AddToList(WPARAM, LPARAM lParam)
// contact visible
// and add them on the list
samename++;
- if (!Contact_OnList(hContact2)) {
- Contact_PutOnList(hContact2);
- Contact_Hide(hContact2, false);
+ if (!Contact::OnList(hContact2)) {
+ Contact::PutOnList(hContact2);
+ Contact::Hide(hContact2, false);
}
db_free(&dbv);
}