removed warnings: rearranged initializers and removed unused variable "onChild"

This commit is contained in:
rods%netscape.com 1999-08-18 14:41:53 +00:00
Родитель 7a98b3503f
Коммит a89b226196
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -54,8 +54,9 @@ NS_IMPL_RELEASE(nsToolbarDragListener)
// Not much to do besides init member variables
//
nsToolbarDragListener :: nsToolbarDragListener ( nsToolbarFrame* inToolbar, nsIPresContext* inPresContext )
: mToolbar(inToolbar), mPresContext(inPresContext), mMouseDown(PR_FALSE), mMouseDrag(PR_FALSE),
mCurrentDropLoc(-1)
: mToolbar(inToolbar), mPresContext(inPresContext), mCurrentDropLoc(-1),
mMouseDown(PR_FALSE), mMouseDrag(PR_FALSE)
{
NS_INIT_REFCNT();
}
@ -303,7 +304,7 @@ nsToolbarDragListener::DragOver(nsIDOMEvent* aDragEvent)
// Check to see if the mouse is over an item
nscoord xLoc;
PRBool isLegalChild;
PRBool onChild = IsOnToolbarItem(aDragEvent, xLoc, isLegalChild);
IsOnToolbarItem(aDragEvent, xLoc, isLegalChild);
if (xLoc != mCurrentDropLoc) {
mToolbar->SetDropfeedbackLocation(xLoc);