From 56e76849b8f035667dbb3f82f48302d1d72c6e0f Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Sun, 7 Jan 2007 10:45:22 +0100 Subject: [PATCH] taskmgr: Remove unused variable and if check (Coverity). --- programs/taskmgr/graphctl.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/programs/taskmgr/graphctl.c b/programs/taskmgr/graphctl.c index 9a162a630a0..749d9fa801b 100644 --- a/programs/taskmgr/graphctl.c +++ b/programs/taskmgr/graphctl.c @@ -127,15 +127,11 @@ TGraphCtrl::~TGraphCtrl() BOOL GraphCtrl_Create(TGraphCtrl* this, HWND hWnd, HWND hParentWnd, UINT nID) { - BOOL result = 0; - GraphCtrl_Init(this); this->m_hParentWnd = hParentWnd; this->m_hWnd = hWnd; GraphCtrl_Resize(this); - if (result != 0) - GraphCtrl_InvalidateCtrl(this); - return result; + return 0; } void GraphCtrl_SetRange(TGraphCtrl* this, double dLower, double dUpper, int nDecimalPlaces) -- 2.11.4.GIT