Changeset 368 in Sophya for trunk/SophyaPI/PIext/pistdimgapp.cc
- Timestamp:
- Aug 9, 1999, 1:57:10 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/pistdimgapp.cc
r349 r368 767 767 } 768 768 } 769 /* --Methode-- */ 770 bool PIStdImgApp::CheckWRsId(int k) 771 { 772 if (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 } 778 else { // 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 } 769 785 770 786
Note:
See TracChangeset
for help on using the changeset viewer.