FACT++  1.0
TObject * TPointGui::FindWidget ( Int_t  id) const
private

Definition at line 1343 of file TPointGui.cc.

References fList.

Referenced by Fit(), GetFloat(), and TPointGui().

1344 {
1345  if (id<0)
1346  return NULL;
1347 
1348  TObject *obj;
1349  TIter Next(fList);
1350  while ((obj=Next()))
1351  {
1352  const TGWidget *wid = (TGWidget*)obj->IsA()->DynamicCast(TGWidget::Class(), obj);
1353  if (!wid)
1354  continue;
1355 
1356  if (id == wid->WidgetId())
1357  return obj;
1358  }
1359  return NULL;
1360 }
TList * fList
Definition: TPointGui.h:39

+ Here is the caller graph for this function: