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/Steam/src | |
parent | 5402e71b923712624d6df9aad6f3983ba4e44f4e (diff) |
database:
- namespace DB declared for commonly used database classes;
- stubs for database event cursors;
- code cleaning
Diffstat (limited to 'protocols/Steam/src')
-rw-r--r-- | protocols/Steam/src/steam_contacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_contacts.cpp b/protocols/Steam/src/steam_contacts.cpp index 38b20bc573..ea2b121601 100644 --- a/protocols/Steam/src/steam_contacts.cpp +++ b/protocols/Steam/src/steam_contacts.cpp @@ -308,7 +308,7 @@ void CSteamProto::ContactIsAskingAuth(MCONTACT hContact) char reason[MAX_PATH]; mir_snprintf(reason, Translate("%s has added you to contact list"), nickName.get()); - DB_AUTH_BLOB blob(hContact, nickName, firstName, lastName, steamId, reason); + DB::AUTH_BLOB blob(hContact, nickName, firstName, lastName, steamId, reason); PROTORECVEVENT recv = { 0 }; recv.timestamp = now(); |