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 /plugins/NewEventNotify | |
parent | 5402e71b923712624d6df9aad6f3983ba4e44f4e (diff) |
database:
- namespace DB declared for commonly used database classes;
- stubs for database event cursors;
- code cleaning
Diffstat (limited to 'plugins/NewEventNotify')
-rw-r--r-- | plugins/NewEventNotify/src/popup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewEventNotify/src/popup.cpp b/plugins/NewEventNotify/src/popup.cpp index 0cc9bf7df2..07a074042e 100644 --- a/plugins/NewEventNotify/src/popup.cpp +++ b/plugins/NewEventNotify/src/popup.cpp @@ -272,7 +272,7 @@ static wchar_t* GetEventPreview(DBEVENTINFO *dbei) case EVENTTYPE_AUTHREQUEST:
if (dbei->pBlob) {
- DB_AUTH_BLOB blob(dbei->pBlob);
+ DB::AUTH_BLOB blob(dbei->pBlob);
wchar_t *szNick = nullptr;
if (blob.get_nick())
|