added missing WindowMessage cast breaking last build commit - oops

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2023 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
dmex04
2009-10-01 22:32:02 +00:00
parent ab2076e8c5
commit b4e6df55bf
@@ -136,7 +136,7 @@ namespace ProcessHacker
if (!isThemeSet) //run once
{
Win32.SetWindowTheme(this.Handle, "explorer", null); //Vista Explorer style
Win32.SendMessage(this.Handle, LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_DOUBLEBUFFER, LVS_EX_DOUBLEBUFFER);
Win32.SendMessage(this.Handle, (WindowMessage)LVM_SETEXTENDEDLISTVIEWSTYLE, LVS_EX_DOUBLEBUFFER, LVS_EX_DOUBLEBUFFER);
isThemeSet = true;
}
break;