user32/tests: Remove variable atom which is not really used from test_Expose.

This commit is contained in:
Gerald Pfeifer 2010-05-09 14:09:05 +02:00 committed by Alexandre Julliard
parent 9d6a10a43a
commit 173a813e6a
1 changed files with 2 additions and 2 deletions

View File

@ -5187,14 +5187,14 @@ static LRESULT CALLBACK TestExposedRegion_WndProc(HWND hwnd, UINT msg, WPARAM wP
static void test_Expose(void)
{
ATOM atom;
WNDCLASSA cls;
HWND mw;
memset(&cls, 0, sizeof(WNDCLASSA));
cls.lpfnWndProc = TestExposedRegion_WndProc;
cls.hbrBackground = GetStockObject(WHITE_BRUSH);
cls.lpszClassName = "TestExposeClass";
atom = RegisterClassA(&cls);
RegisterClassA(&cls);
mw = CreateWindowA("TestExposeClass", "MainWindow", WS_VISIBLE|WS_OVERLAPPEDWINDOW,
0, 0, 200, 100, NULL, NULL, 0, NULL);