summaryrefslogtreecommitdiff
path: root/plugins/GmailNotifier/src/main.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-09-04 21:21:10 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-09-04 21:21:10 +0300
commit9f80b5afceffa6853ac9ab410dd21a90b4ff7e1f (patch)
tree45698788e092cd3f620409e1ccb5db44ece5d069 /plugins/GmailNotifier/src/main.cpp
parent1b2ae0904d8efdf35770383b964eaa49a8371fbb (diff)
fix for GMail Notifier default icons
Diffstat (limited to 'plugins/GmailNotifier/src/main.cpp')
-rw-r--r--plugins/GmailNotifier/src/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/GmailNotifier/src/main.cpp b/plugins/GmailNotifier/src/main.cpp
index af427d1836..dabac93804 100644
--- a/plugins/GmailNotifier/src/main.cpp
+++ b/plugins/GmailNotifier/src/main.cpp
@@ -117,11 +117,11 @@ extern "C" int __declspec(dllexport) Load()
opt.LogThreads = db_get_dw(NULL, MODULE_NAME, "LogThreads", FALSE);
DBVARIANT dbv;
- if (db_get_s(NULL, "Icons", "GmailMNotifier40076", &dbv)) {
- db_set_s(NULL, "Icons", "GmailMNotifier40071", "plugins\\gmailm.dll,2");
- db_set_s(NULL, "Icons", "GmailMNotifier40072", "plugins\\gmailm.dll,2");
- db_set_s(NULL, "Icons", "GmailMNotifier40076", "plugins\\gmailm.dll,0");
- db_set_s(NULL, "Icons", "GmailMNotifier40073", "plugins\\gmailm.dll,1");
+ if (db_get_s(NULL, "SkinIcons", "core_status_" MODULE_NAME "4", &dbv)) {
+ db_set_s(NULL, "SkinIcons", "core_status_" MODULE_NAME "0", "plugins\\GmailNotifier.dll,2");
+ db_set_s(NULL, "SkinIcons", "core_status_" MODULE_NAME "1", "plugins\\GmailNotifier.dll,2");
+ db_set_s(NULL, "SkinIcons", "core_status_" MODULE_NAME "2", "plugins\\GmailNotifier.dll,0");
+ db_set_s(NULL, "SkinIcons", "core_status_" MODULE_NAME "4", "plugins\\GmailNotifier.dll,1");
}
else db_free(&dbv);