diff options
Diffstat (limited to 'protocols/WebView/src')
-rw-r--r-- | protocols/WebView/src/webview_services.cpp | 12 |
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); } |