removed min/max

git-svn-id: svn://10.0.0.236/trunk@45553 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
beard%netscape.com 1999-09-01 23:16:28 +00:00
parent 4cdea18e2e
commit a77676c65e

View File

@ -1774,9 +1774,6 @@ NS_IMETHODIMP nsViewManager :: MoveViewTo(nsIView *aView, nscoord aX, nscoord aY
return NS_OK;
}
inline min(nscoord x, nscoord y) { return (x < y ? x : y); }
inline max(nscoord x, nscoord y) { return (x > y ? x : y); }
NS_IMETHODIMP nsViewManager::ResizeView(nsIView *aView, nscoord width, nscoord height)
{
nscoord oldWidth, oldHeight;