From b4e6df55bfecc4a6cf1232e9e0e005ff3ccd95da Mon Sep 17 00:00:00 2001 From: dmex04 Date: Thu, 1 Oct 2009 22:32:02 +0000 Subject: [PATCH] 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 --- trunk/ProcessHacker/Components/ExtendedListView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/ProcessHacker/Components/ExtendedListView.cs b/trunk/ProcessHacker/Components/ExtendedListView.cs index 9e7bcf702..8379bf40c 100644 --- a/trunk/ProcessHacker/Components/ExtendedListView.cs +++ b/trunk/ProcessHacker/Components/ExtendedListView.cs @@ -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;