From a7f8f318e37c947c01e233cb8cbff5b97d528bfe Mon Sep 17 00:00:00 2001 From: Richard Campbell Date: Thu, 22 Jan 2004 01:38:43 +0000 Subject: [PATCH] ifndef _ROS_ svn path=/trunk/; revision=7820 --- reactos/subsys/system/explorer/taskbar/traynotify.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/reactos/subsys/system/explorer/taskbar/traynotify.cpp b/reactos/subsys/system/explorer/taskbar/traynotify.cpp index d893ee4a268..669d192589b 100644 --- a/reactos/subsys/system/explorer/taskbar/traynotify.cpp +++ b/reactos/subsys/system/explorer/taskbar/traynotify.cpp @@ -119,10 +119,15 @@ NotifyArea::~NotifyArea() HWND NotifyArea::Create(HWND hwndParent) { ClientRect clnt(hwndParent); - + #ifndef _ROS_ return Window::Create(WINDOW_CREATOR(NotifyArea), WS_EX_STATICEDGE, BtnWindowClass(CLASSNAME_TRAYNOTIFY,CS_DBLCLKS), TITLE_TRAYNOTIFY, WS_CHILD|WS_VISIBLE, clnt.right-(NOTIFYAREA_WIDTH_DEF+1), 1, NOTIFYAREA_WIDTH_DEF, clnt.bottom-2, hwndParent); + #else + return Window::Create(WINDOW_CREATOR(NotifyArea), 0, + BtnWindowClass(CLASSNAME_TRAYNOTIFY,CS_DBLCLKS), TITLE_TRAYNOTIFY, WS_CHILD|WS_VISIBLE, + clnt.right-(NOTIFYAREA_WIDTH_DEF+1), 1, NOTIFYAREA_WIDTH_DEF, clnt.bottom-2, hwndParent); + #endif } LRESULT NotifyArea::WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)