Commit 173a813e authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

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

parent 9d6a10a4
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment