diff options
author | George Hazan <ghazan@miranda.im> | 2022-06-13 21:54:10 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-06-13 21:54:10 +0300 |
commit | 3c1685dff73e9c55760f8c4f1a530b06ef862039 (patch) | |
tree | bd1101e30aa025b6a8d1289740e8841152c466a0 /protocols/GmailNotifier/src/utility.cpp | |
parent | 3c13b970fda10419e1c3db46a244f16a7a0f27d9 (diff) |
GMailNotifier: options -> UI classes
Diffstat (limited to 'protocols/GmailNotifier/src/utility.cpp')
-rw-r--r-- | protocols/GmailNotifier/src/utility.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/GmailNotifier/src/utility.cpp b/protocols/GmailNotifier/src/utility.cpp index 7049763c55..1743b1ff05 100644 --- a/protocols/GmailNotifier/src/utility.cpp +++ b/protocols/GmailNotifier/src/utility.cpp @@ -35,9 +35,9 @@ BOOL GetBrowser(char *str) char strDefault[] = "https\\shell\\open\\command"; DBVARIANT dbv; - if (opt.OpenUsePrg == 1) + if (g_plugin.OpenUsePrg == 1) strKey = strIE; - else if (opt.OpenUsePrg == 0) + else if (g_plugin.OpenUsePrg == 0) strKey = strDefault; else { if (!g_plugin.getString("OpenUsePrgPath", &dbv)) { |