Get rid of WS_EX_CLIENTEDGE

Switch to CreateWindow, as CreateWindowEx is no longer need
This commit is contained in:
toehead2001 2015-11-10 02:50:08 -07:00
parent 89d6811068
commit bdfb64c4e8
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ void CRomBrowser::AllocateBrushs(void)
void CRomBrowser::CreateRomListControl(void)
{
m_hRomList = (HWND)CreateWindowEx(WS_EX_CLIENTEDGE, WC_LISTVIEW, NULL,
m_hRomList = (HWND)CreateWindow(WC_LISTVIEW, NULL,
WS_TABSTOP | WS_VISIBLE | WS_CHILD | LVS_OWNERDRAWFIXED |
LVS_SINGLESEL | LVS_REPORT,
0, 0, 0, 0, m_MainWindow, (HMENU)IDC_ROMLIST, GetModuleHandle(NULL), NULL);