diff options
author | George Hazan <ghazan@miranda.im> | 2020-04-28 13:46:19 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-04-28 13:46:19 +0300 |
commit | e4082ab57edbb790f721fed477532f93ff1986b8 (patch) | |
tree | a6f09b2ae1d0df1a47dec13b1ea096bfa782e9c5 /protocols/VKontakte | |
parent | 5402e71b923712624d6df9aad6f3983ba4e44f4e (diff) |
database:
- namespace DB declared for commonly used database classes;
- stubs for database event cursors;
- code cleaning
Diffstat (limited to 'protocols/VKontakte')
-rw-r--r-- | protocols/VKontakte/src/misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/VKontakte/src/misc.cpp b/protocols/VKontakte/src/misc.cpp index d8fa035b10..e5acc0d84f 100644 --- a/protocols/VKontakte/src/misc.cpp +++ b/protocols/VKontakte/src/misc.cpp @@ -589,7 +589,7 @@ void CVkProto::DBAddAuthRequest(const MCONTACT hContact, bool added) {
debugLogA("CVkProto::DBAddAuthRequest");
- DB_AUTH_BLOB blob(hContact,
+ DB::AUTH_BLOB blob(hContact,
T2Utf(ptrW(db_get_wsa(hContact, m_szModuleName, "Nick"))),
T2Utf(ptrW(db_get_wsa(hContact, m_szModuleName, "FirstName"))),
T2Utf(ptrW(db_get_wsa(hContact, m_szModuleName, "LastName"))), nullptr, nullptr);
|