Changeset 368 in Sophya for trunk/SophyaPI/PIext/pistdimgapp.cc


Ignore:
Timestamp:
Aug 9, 1999, 1:57:10 PM (26 years ago)
Author:
ercodmgr
Message:

modifs Fenetre de fit et gestion repertoire /func Reza 9/8/99

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/pistdimgapp.cc

    r349 r368  
    767767  }
    768768}
     769/* --Methode-- */
     770bool PIStdImgApp::CheckWRsId(int k)
     771{
     772if (k > 0) { // C'est un BaseWidget
     773  BWMList::iterator it;
     774  it  = mBWList.find(k);
     775  if (it == mBWList.end())  return(false);
     776  else return(true);
     777  }
     778else {  // C'est un drawer
     779  DrwMList::iterator it;
     780  it  = mDrwList.find(-k);
     781  if (it == mDrwList.end())  return(false);
     782  else return(true);
     783  }
     784}
    769785
    770786
Note: See TracChangeset for help on using the changeset viewer.