From e7461703aeb9d42ac072e939cf783a1db15d5da9 Mon Sep 17 00:00:00 2001 From: Sup Yut Sum Date: Sun, 6 Jan 2013 00:14:49 +0800 Subject: [PATCH] Use true instead of TRUE Signed-off-by: Sup Yut Sum --- src/TortoiseProc/Commands/SVNFetchCommand.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/TortoiseProc/Commands/SVNFetchCommand.cpp b/src/TortoiseProc/Commands/SVNFetchCommand.cpp index 835e7dff5..b83793371 100644 --- a/src/TortoiseProc/Commands/SVNFetchCommand.cpp +++ b/src/TortoiseProc/Commands/SVNFetchCommand.cpp @@ -70,13 +70,13 @@ bool SVNFetchCommand::Execute() { if (progress.m_GitStatus == 0) CMessageBox::Show(NULL, L"No new revisions fetched.", L"TortoiseGit Fetch", MB_OK | MB_ICONINFORMATION); - return TRUE; + return true; } CLogDlg dlg; dlg.SetParams(CTGitPath(_T("")), CTGitPath(_T("")), _T(""), upstreamOldHash, upstreamNewHash, 0); dlg.DoModal(); - return TRUE; + return true; } else if (userResponse == IDC_PROGRESS_BUTTON1 + 1) { @@ -84,13 +84,13 @@ bool SVNFetchCommand::Execute() { if (progress.m_GitStatus == 0) CMessageBox::Show(NULL, L"No new revisions fetched.", L"TortoiseGit Fetch", MB_OK | MB_ICONINFORMATION); - return TRUE; + return true; } CFileDiffDlg dlg; dlg.SetDiff(NULL, upstreamNewHash, upstreamOldHash); dlg.DoModal(); - return TRUE; + return true; } else return false; -- 2.11.4.GIT