Mozilla stuff

Uhm...

2004-07-08

iview.h:

nsIScrollableView* GetNearestScrollingView() {
nsIScrollableView* sv = nsnull;
CallQueryInterface(this, &sv);
if (sv) {
return sv;
}

nsIView* parent = this->GetParent();

if (parent) {
return GetNearestScrollingView(parent);
}

return nsnull;


}

0 Comments:

Post a Comment

<< Home