diff options
author | George Hazan <ghazan@miranda.im> | 2018-06-01 22:08:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-06-01 22:08:55 +0300 |
commit | c79cd9adc27eac462764776e4a3063fd5ca0ac85 (patch) | |
tree | 2bb43a7097d3fcf5d8203531007d198a9c68b5c1 /src/mir_app | |
parent | 31fae888e1c8d04576299a988c5ab8508c8452bf (diff) |
eternal recursion prevention
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/proto_opts.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mir_app/src/proto_opts.cpp b/src/mir_app/src/proto_opts.cpp index 4d80ea16a6..a9a2ac15e0 100644 --- a/src/mir_app/src/proto_opts.cpp +++ b/src/mir_app/src/proto_opts.cpp @@ -620,10 +620,8 @@ public: int idx = m_accList.GetCurSel();
if (idx != -1) {
PROTOACCOUNT *pa = (PROTOACCOUNT*)m_accList.GetItemData(idx);
- if (pa) {
+ if (pa)
pa->bAccMgrUIChanged = true;
- NotifyChange();
- }
}
}
};
|