diff options
Diffstat (limited to 'plugins/UserInfoEx/src/dlg_propsheet.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/dlg_propsheet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserInfoEx/src/dlg_propsheet.cpp b/plugins/UserInfoEx/src/dlg_propsheet.cpp index e254162217..cdfcb19319 100644 --- a/plugins/UserInfoEx/src/dlg_propsheet.cpp +++ b/plugins/UserInfoEx/src/dlg_propsheet.cpp @@ -335,7 +335,7 @@ static INT_PTR AddPage(WPARAM wParam, LPARAM lParam) CPsTreeItem *pNew = new CPsTreeItem();
if (pNew) {
if (pNew->Create(pPsh, uip)) {
- MIR_DELETE(pNew);
+ delete pNew;
return 1;
}
|