Removed DPRINT1, 8^D

svn path=/trunk/; revision=20611
This commit is contained in:
James Tabor 2006-01-06 14:50:56 +00:00
parent e5a6d4cf78
commit a56d746326

View file

@ -1659,7 +1659,7 @@ NtUserGetMenuBarInfo(
MENUBARINFO kmbi; MENUBARINFO kmbi;
DECLARE_RETURN(BOOL); DECLARE_RETURN(BOOL);
DPRINT1("Enter NtUserGetMenuBarInfo\n"); DPRINT("Enter NtUserGetMenuBarInfo\n");
UserEnterShared(); UserEnterShared();
if (!(WindowObject = UserGetWindowObject(hwnd))) if (!(WindowObject = UserGetWindowObject(hwnd)))
@ -1849,7 +1849,7 @@ NtUserGetMenuBarInfo(
RETURN(Res); RETURN(Res);
CLEANUP: CLEANUP:
DPRINT1("Leave NtUserGetMenuBarInfo, ret=%i\n",_ret_); DPRINT("Leave NtUserGetMenuBarInfo, ret=%i\n",_ret_);
UserLeave(); UserLeave();
END_CLEANUP; END_CLEANUP;
} }
@ -1887,7 +1887,7 @@ NtUserGetMenuItemRect(
PMENU_ITEM MenuItem; PMENU_ITEM MenuItem;
DECLARE_RETURN(BOOL); DECLARE_RETURN(BOOL);
DPRINT1("Enter NtUserGetMenuItemRect\n"); DPRINT("Enter NtUserGetMenuItemRect\n");
UserEnterShared(); UserEnterShared();
if (!(Menu = UserGetMenuObject(hMenu))) if (!(Menu = UserGetMenuObject(hMenu)))
@ -1923,7 +1923,7 @@ NtUserGetMenuItemRect(
RETURN( TRUE); RETURN( TRUE);
CLEANUP: CLEANUP:
DPRINT1("Leave NtUserGetMenuItemRect, ret=%i\n",_ret_); DPRINT("Leave NtUserGetMenuItemRect, ret=%i\n",_ret_);
UserLeave(); UserLeave();
END_CLEANUP; END_CLEANUP;
} }