winefile: Remove variable hChildClass which is not really used from InitInstance.

oldstable
Gerald Pfeifer 2010-05-07 22:30:39 +02:00 committed by Alexandre Julliard
parent fcf831acef
commit 7b252d6edb
1 changed files with 1 additions and 2 deletions

View File

@ -4505,7 +4505,6 @@ static void InitInstance(HINSTANCE hinstance)
WNDCLASSEXW wcFrame;
WNDCLASSW wcChild;
ATOM hChildClass;
int col;
INITCOMMONCONTROLSEX icc = {
@ -4551,7 +4550,7 @@ static void InitInstance(HINSTANCE hinstance)
wcChild.lpszMenuName = 0;
wcChild.lpszClassName = sWINEFILETREE;
hChildClass = RegisterClassW(&wcChild);
RegisterClassW(&wcChild);
Globals.haccel = LoadAcceleratorsW(hinstance, MAKEINTRESOURCEW(IDA_WINEFILE));