Author: ekohl Date: Mon Apr 23 03:09:45 2007 New Revision: 26469
URL: http://svn.reactos.org/svn/reactos?rev=26469&view=rev Log: Use WS_EX_CLIENTEDGE to make the main windows look a little nicer.
Modified: trunk/reactos/base/applications/mscutils/devmgmt/mainwnd.c trunk/reactos/base/applications/mscutils/servman/mainwnd.c
Modified: trunk/reactos/base/applications/mscutils/devmgmt/mainwnd.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils/... ============================================================================== --- trunk/reactos/base/applications/mscutils/devmgmt/mainwnd.c (original) +++ trunk/reactos/base/applications/mscutils/devmgmt/mainwnd.c Mon Apr 23 03:09:45 2007 @@ -154,7 +154,7 @@ static BOOL CreateTreeView(PMAIN_WND_INFO Info) { - Info->hTreeView = CreateWindowEx(0, + Info->hTreeView = CreateWindowEx(WS_EX_CLIENTEDGE, WC_TREEVIEW, NULL, WS_CHILD | WS_VISIBLE | WS_BORDER | TVS_HASLINES |
Modified: trunk/reactos/base/applications/mscutils/servman/mainwnd.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/mscutils/... ============================================================================== --- trunk/reactos/base/applications/mscutils/servman/mainwnd.c (original) +++ trunk/reactos/base/applications/mscutils/servman/mainwnd.c Mon Apr 23 03:09:45 2007 @@ -310,7 +310,7 @@ LVCOLUMN lvc = { 0 }; TCHAR szTemp[256];
- Info->hListView = CreateWindowEx(0, + Info->hListView = CreateWindowEx(WS_EX_CLIENTEDGE, WC_LISTVIEW, NULL, WS_CHILD | WS_VISIBLE | LVS_REPORT | WS_BORDER |