oleview: Do not cast NULL.

oldstable
Michael Stefaniuc 2008-11-02 00:26:07 +01:00 committed by Alexandre Julliard
parent 79e31f6d40
commit 87785a2df0
1 changed files with 2 additions and 2 deletions

View File

@ -566,7 +566,7 @@ static void AddBaseEntries(void)
LoadString(globals.hMainInst, IDS_TREE_OC, U(tvis).item.pszText,
MAX_LOAD_STRING);
U(tvis).item.lParam = (LPARAM)NULL;
U(tvis).item.lParam = 0;
tree.hOC = TreeView_InsertItem(globals.hTree, &tvis);
@ -582,7 +582,7 @@ static void AddBaseEntries(void)
LoadString(globals.hMainInst, IDS_TREE_O1O, U(tvis).item.pszText,
MAX_LOAD_STRING);
U(tvis).item.lParam = (LPARAM)NULL;
U(tvis).item.lParam = 0;
tree.hO1O = TreeView_InsertItem(globals.hTree, &tvis);
LoadString(globals.hMainInst, IDS_TREE_GBCC, U(tvis).item.pszText,