From 5437c8211d04bad53b4b8f5dc20a3a702a430f63 Mon Sep 17 00:00:00 2001 From: Sup Yut Sum Date: Sun, 10 Mar 2013 12:41:55 +0800 Subject: [PATCH] Fix regression of 487b93956d407b1692b49c51c9e2bae7d36b3b65 Signed-off-by: Sup Yut Sum --- src/TortoiseProc/GitProgressDlg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TortoiseProc/GitProgressDlg.h b/src/TortoiseProc/GitProgressDlg.h index 0fd399bfc..532d69cf8 100644 --- a/src/TortoiseProc/GitProgressDlg.h +++ b/src/TortoiseProc/GitProgressDlg.h @@ -80,7 +80,7 @@ public: * beforehand, that number can be set here. It is then used to show a more * accurate progress bar during the operation. */ - void SetItemCount(long count) {if(count) m_ProgList.SetItemCount(count);} + void SetItemCount(long count) {if(count) m_ProgList.SetItemCountTotal(count);} bool DidErrorsOccur() {return m_ProgList.m_bErrorsOccurred;} -- 2.11.4.GIT