diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-27 14:57:51 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-27 14:57:51 +0300 |
commit | 9ec3c7e78e560356066b272ad7a38d3d333de1b5 (patch) | |
tree | e72efa33a5af633cc83503efd31bdbc17ebf781e /src/mir_app/src/auth.cpp | |
parent | 66ab99eb5b5c47a01e1cc6613af07426abbeb19b (diff) |
global variable name standardization
Diffstat (limited to 'src/mir_app/src/auth.cpp')
-rw-r--r-- | src/mir_app/src/auth.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_app/src/auth.cpp b/src/mir_app/src/auth.cpp index 7eb89bc2b0..91200e360a 100644 --- a/src/mir_app/src/auth.cpp +++ b/src/mir_app/src/auth.cpp @@ -329,7 +329,7 @@ static int AuthEventAdded(WPARAM, LPARAM lParam) cle.hIcon = Skin_LoadIcon(SKINICON_AUTH_REQUEST); cle.pszService = MS_AUTH_SHOWREQUEST; - g_CLI.pfnAddEvent(&cle); + g_clistApi.pfnAddEvent(&cle); } else if (dbei.eventType == EVENTTYPE_ADDED) { Skin_PlaySound("AddedEvent"); @@ -340,7 +340,7 @@ static int AuthEventAdded(WPARAM, LPARAM lParam) cle.hIcon = Skin_LoadIcon(SKINICON_AUTH_ADD); cle.pszService = MS_AUTH_SHOWADDED; - g_CLI.pfnAddEvent(&cle); + g_clistApi.pfnAddEvent(&cle); } return 0; } |