From 721a7f39f78a7d62ba99b2de68c5ac862bad58b5 Mon Sep 17 00:00:00 2001 From: GreyMerlin Date: Fri, 8 Jan 2021 09:38:39 -0800 Subject: [PATCH] Fix syntax errors with `Test` solution configuration --- Src/Test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Test.cpp b/Src/Test.cpp index 466705359..2ebe56cf2 100644 --- a/Src/Test.cpp +++ b/Src/Test.cpp @@ -470,10 +470,10 @@ TEST(ImageCompareTest, Open) TEST(FileMenu, New) { CFrameWnd *pFrame; - GetMainFrame()->FileNew(2); + GetMainFrame()->FileNew(2, CMainFrame::FRAMETYPE::FRAME_FILE, false); pFrame = GetMainFrame()->GetActiveFrame(); pFrame->PostMessage(WM_CLOSE); - GetMainFrame()->FileNew(3); + GetMainFrame()->FileNew(3, CMainFrame::FRAMETYPE::FRAME_FILE, false); pFrame = GetMainFrame()->GetActiveFrame(); pFrame->PostMessage(WM_CLOSE); } -- 2.11.0