summaryrefslogtreecommitdiff
path: root/src/mir_app
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-06-01 22:08:55 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-06-01 22:08:55 +0300
commitc79cd9adc27eac462764776e4a3063fd5ca0ac85 (patch)
tree2bb43a7097d3fcf5d8203531007d198a9c68b5c1 /src/mir_app
parent31fae888e1c8d04576299a988c5ab8508c8452bf (diff)
eternal recursion prevention
Diffstat (limited to 'src/mir_app')
-rw-r--r--src/mir_app/src/proto_opts.cpp4
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();
- }
}
}
};