From 0b470d7501763bcae11ab9b0d24fe46246f20eae Mon Sep 17 00:00:00 2001 From: Sup Yut Sum Date: Sat, 16 Mar 2013 17:27:22 +0800 Subject: [PATCH] Remove unneeded variable assignments Based on TortoiseSVN revision 24009 Signed-off-by: Sup Yut Sum --- src/Utils/JumpListHelpers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Utils/JumpListHelpers.cpp b/src/Utils/JumpListHelpers.cpp index 043e89c27..f344fd20f 100644 --- a/src/Utils/JumpListHelpers.cpp +++ b/src/Utils/JumpListHelpers.cpp @@ -1,6 +1,6 @@ // TortoiseGit - a Windows shell extension for easy version control -// Copyright (C) 2009-2012 - TortoiseSVN +// Copyright (C) 2009-2013 - TortoiseSVN // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -128,6 +128,6 @@ void DeleteJumpList(LPCTSTR appID) ATL::CComPtr pcdl; HRESULT hr = pcdl.CoCreateInstance(CLSID_DestinationList, NULL, CLSCTX_INPROC_SERVER); if (SUCCEEDED(hr)) { - hr = pcdl->DeleteList(appID); + pcdl->DeleteList(appID); } } -- 2.11.4.GIT