Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2012-07-15 14:08:05 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-07-15 14:08:05 +0400
commit91113bab9852cdb81383c10bdbe7b5019f79ccda (patch)
treec07eaf588cc9030f198dde2a6119920a86243fb2 /src/thirdparty/TreePropSheet
parentc8ad2f029da16aeaff49ec43bdf3c6837f22b6a4 (diff)
fix previous commit
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5474 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/thirdparty/TreePropSheet')
-rw-r--r--src/thirdparty/TreePropSheet/TreePropSheet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thirdparty/TreePropSheet/TreePropSheet.cpp b/src/thirdparty/TreePropSheet/TreePropSheet.cpp
index 631bd8e7d..ec001a3c1 100644
--- a/src/thirdparty/TreePropSheet/TreePropSheet.cpp
+++ b/src/thirdparty/TreePropSheet/TreePropSheet.cpp
@@ -247,13 +247,13 @@ CString CTreePropSheet::GenerateEmptyPageMessage(LPCTSTR lpszEmptyPageMessage, L
CTreeCtrl* CTreePropSheet::CreatePageTreeObject()
{
- return DNew CTreeCtrl;
+ return new CTreeCtrl;
}
CPropPageFrame* CTreePropSheet::CreatePageFrame()
{
- return DNew CPropPageFrameDefault;
+ return new CPropPageFrameDefault;
}