diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-22 18:51:47 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-22 18:51:47 +0000 |
commit | 3d930b54d40bdb2250816a793e06f7f7cef08010 (patch) | |
tree | 49c375b7ee4ab3570e679a17ea37a687877ccb67 /plugins/NewAwaySysMod/src/Properties.h | |
parent | 32acb35e56646b68b4d06beab209fb67a625a913 (diff) |
- toolbar button restored;
- fix for the main menu item's text updating;
- unused bitmaps removed;
git-svn-id: http://svn.miranda-ng.org/main/trunk@8222 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewAwaySysMod/src/Properties.h')
-rw-r--r-- | plugins/NewAwaySysMod/src/Properties.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewAwaySysMod/src/Properties.h b/plugins/NewAwaySysMod/src/Properties.h index b068189332..e02e5c1586 100644 --- a/plugins/NewAwaySysMod/src/Properties.h +++ b/plugins/NewAwaySysMod/src/Properties.h @@ -331,7 +331,7 @@ public: {
CString Setting(Parent->szProto ? Parent->ProtoStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPROTOSETTINGS) : DB_ENABLEREPLY);
if (db_get_b(NULL, MOD_NAME, Setting, VAL_USEDEFAULT) == Value)
- return *this; // prevent deadlocks when calling UpdateSOEButtons
+ return *this;
if (Value != VAL_USEDEFAULT)
db_set_b(NULL, MOD_NAME, Setting, Value != 0);
@@ -450,7 +450,7 @@ public: CString Setting(Parent->ContactStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS));
MCONTACT hContact = (Parent->hContact != INVALID_CONTACT_ID) ? Parent->hContact : NULL;
if (db_get_b(hContact, MOD_NAME, Setting, VAL_USEDEFAULT) == Value)
- return *this; // prevent deadlocks when calling UpdateSOEButtons
+ return *this;
if (Value != VAL_USEDEFAULT)
db_set_b(hContact, MOD_NAME, Setting, Value != 0);
|