From bbb679c084fa20bcae00fcdcf19d195a6a94eb07 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Mon, 28 Feb 2011 00:14:25 +0100 Subject: [PATCH] Fixed issue #729: SVN DCommitt incorrectly executes with --rmdir Signed-off-by: Sven Strickroth --- src/Changelog.txt | 1 + src/TortoiseProc/SVNDCommitDlg.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/Changelog.txt b/src/Changelog.txt index 133c1c860..14d8ac5ce 100644 --- a/src/Changelog.txt +++ b/src/Changelog.txt @@ -17,6 +17,7 @@ * Fix attaching of patches to mails with some MAPI clients * Fixed sending patches combined in one mail w/o attachments (files were always attached) * Make change setting "hide TGit menu" work + * Fixed issue #729: SVN DCommitt incorrectly executes with --rmdir = Release 1.6.5.0 = == Bug Fix == diff --git a/src/TortoiseProc/SVNDCommitDlg.cpp b/src/TortoiseProc/SVNDCommitDlg.cpp index 31446b818..6a56e57bb 100644 --- a/src/TortoiseProc/SVNDCommitDlg.cpp +++ b/src/TortoiseProc/SVNDCommitDlg.cpp @@ -28,6 +28,8 @@ IMPLEMENT_DYNAMIC(CSVNDCommitDlg, CStandAloneDialog) CSVNDCommitDlg::CSVNDCommitDlg(CWnd* pParent /*=NULL*/) : CStandAloneDialog(CSVNDCommitDlg::IDD, pParent) + , m_remember(FALSE) + , m_rmdir(FALSE) { } -- 2.11.4.GIT