#include "WimpLib:WItem.h"

#include "WimpLib:Desktop.h"
#include "WimpLib:Display.h"

void WOwner_PlotBackGround_White(const void* pOwner, const CWindCvt* pCvtInfo, const CRect* pRect)
{
	IGNORE(pOwner);
	CRect box;

	Desktop_SetStdColour(0);
	box = RectToScreen(pRect, pCvtInfo);
	RoundRectForPlot(&box);
	Display_RectangleFill(&box);
}
