diff options
author | Jose <jose@zeroc.com> | 2015-02-17 17:08:54 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-02-17 17:08:54 +0100 |
commit | 21c1ba295bc813f35a638b3867234c63dac1816e (patch) | |
tree | d4e82f25daf0030375094f734cf4c5ad2d55fdf2 /cpp/demo/IcePatch2/MFC | |
parent | ICE-6306 added checks to javascript for byte/short/int (diff) | |
download | ice-21c1ba295bc813f35a638b3867234c63dac1816e.tar.bz2 ice-21c1ba295bc813f35a638b3867234c63dac1816e.tar.xz ice-21c1ba295bc813f35a638b3867234c63dac1816e.zip |
Fixed (ICE-5740) - IcePatch2 has issues with 'large' files.
Diffstat (limited to 'cpp/demo/IcePatch2/MFC')
-rw-r--r-- | cpp/demo/IcePatch2/MFC/PatchClientDlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/IcePatch2/MFC/PatchClientDlg.cpp b/cpp/demo/IcePatch2/MFC/PatchClientDlg.cpp index 8dafedc7dd1..a77bc4aafc5 100644 --- a/cpp/demo/IcePatch2/MFC/PatchClientDlg.cpp +++ b/cpp/demo/IcePatch2/MFC/PatchClientDlg.cpp @@ -414,7 +414,7 @@ CPatchDlg::OnStartPatch() properties->setProperty("IcePatch2Client.Remove", remove); DialogPatcherFeedbackPtr feedback = new DialogPatcherFeedback(this); - IcePatch2::PatcherPtr patcher = new IcePatch2::Patcher(_communicator, feedback); + IcePatch2::PatcherPtr patcher = IcePatch2::PatcherFactory::create(_communicator, feedback); // // Disable a few controls during the patch process. |