diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-04 10:23:44 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-04 10:23:44 +0000 |
commit | 2def6c5339047390dbda130db4d77cdb19820961 (patch) | |
tree | e4a9a48da39be6ec78fe854dd9ddc52c56af8c3d | |
parent | 4c5ea0b0192ebacb2ba8a165c079a9a10c833daf (diff) |
NewXstatusNotify - fix for inverted option
git-svn-id: http://svn.miranda-ng.org/main/trunk@1349 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/NewXstatusNotify/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/NewXstatusNotify/src/options.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewXstatusNotify/res/resource.rc b/plugins/NewXstatusNotify/res/resource.rc index 198de5063d..11308ecd2e 100644 --- a/plugins/NewXstatusNotify/res/resource.rc +++ b/plugins/NewXstatusNotify/res/resource.rc @@ -117,7 +117,7 @@ BEGIN CONTROL "Automatically turn off Popups and Sounds on status change",IDC_AUTODISABLE,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,96,219,10
PUSHBUTTON "Configure",IDC_CONFIGUREAUTODISABLE,239,94,50,14
- CONTROL "Don't notify me for people not in my Contact List",IDC_HIDDENCONTACTSTOO,
+ CONTROL "Notify me for people not in my Contact List",IDC_HIDDENCONTACTSTOO,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,109,279,10
CONTROL "Blink icon in the system tray",IDC_BLINKICON,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,135,279,10
CONTROL "Use status icon",IDC_BLINKICON_STATUS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,148,279,10
diff --git a/plugins/NewXstatusNotify/src/options.cpp b/plugins/NewXstatusNotify/src/options.cpp index 808092d498..8c02d2eeb8 100644 --- a/plugins/NewXstatusNotify/src/options.cpp +++ b/plugins/NewXstatusNotify/src/options.cpp @@ -73,7 +73,7 @@ void LoadOptions() // IDD_OPT_GENERAL
opt.FromOffline = DBGetContactSettingByte(0, MODULE, "FromOffline", 1);
opt.AutoDisable = DBGetContactSettingByte(0, MODULE, "AutoDisable", 1);
- opt.HiddenContactsToo = DBGetContactSettingByte(0, MODULE, "HiddenContactsToo", 1);
+ opt.HiddenContactsToo = DBGetContactSettingByte(0, MODULE, "HiddenContactsToo", 0);
opt.UseIndSnd = DBGetContactSettingByte(0, MODULE, "UseIndSounds", 1);
opt.BlinkIcon = DBGetContactSettingByte(0, MODULE, "BlinkIcon", 0);
opt.BlinkIcon_Status = DBGetContactSettingByte(0, MODULE, "BlinkIcon_Status", 0);
|