summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2014-08-05 16:54:03 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2014-08-05 16:54:03 +0000
commitcc401194f6a69a778507c2c6819d6f1a1ec49432 (patch)
treeb2233a1d5b5c9c8e1f2f53d6f9c4e5217b0b31bb
parent1292a31822229e6537a41c624bc4311e7663109b (diff)
PluginUpdater:
- Popups are now enabled by default git-svn-id: http://svn.miranda-ng.org/main/trunk@10078 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/PluginUpdater/src/Notifications.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PluginUpdater/src/Notifications.cpp b/plugins/PluginUpdater/src/Notifications.cpp
index 9dbbf9a5a9..634ad80dae 100644
--- a/plugins/PluginUpdater/src/Notifications.cpp
+++ b/plugins/PluginUpdater/src/Notifications.cpp
@@ -97,7 +97,7 @@ void ShowPopup(LPCTSTR ptszTitle, LPCTSTR ptszText, int Number)
if(Number != POPUP_TYPE_MSG) {
char setting[100];
mir_snprintf(setting, SIZEOF(setting), "Popups%d", Number);
- if(!db_get_b(NULL, MODNAME, setting, DEFAULT_MESSAGE_ENABLED))
+ if(!db_get_b(NULL, MODNAME, setting, DEFAULT_POPUP_ENABLED))
return;
}