Skip to content

Commit 8f59def

Browse files
committed
modify:flush user list for user add and modify
1 parent 4cf3d8b commit 8f59def

File tree

1 file changed

+8
-2
lines changed
  • XEngine_Source/XEngine_APPService/XEngine_AuthorizeApp/Authorize_Dialog

1 file changed

+8
-2
lines changed

XEngine_Source/XEngine_APPService/XEngine_AuthorizeApp/Authorize_Dialog/Dialog_User.cpp

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,10 @@ void CDialog_User::OnBnClickedButton4()
380380
return;
381381
}
382382
CDialog_Modify m_DlgModify;
383-
m_DlgModify.DoModal();
383+
if (IDOK == m_DlgModify.DoModal())
384+
{
385+
OnBnClickedButton1();
386+
}
384387
}
385388

386389

@@ -424,7 +427,10 @@ void CDialog_User::OnBnClickedButton5()
424427
{
425428
// TODO: 在此添加控件通知处理程序代码
426429
CDialog_Modify m_DlgModify;
427-
m_DlgModify.DoModal();
430+
if (IDOK == m_DlgModify.DoModal())
431+
{
432+
OnBnClickedButton1();
433+
}
428434
}
429435

430436

0 commit comments

Comments
 (0)