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


Ignore:
Timestamp:
Aug 2, 1999, 6:52:49 PM (26 years ago)
Author:
ercodmgr
Message:

1/ Extension de fonctionalites de gestion de repertoires (Lock, ...)
2/ Plus de NTupIntf_Adapter quand les objets heritent de NTupleInterface
3/ Support pour affichage info texte, ds PINtuple et PIStarList

File:
1 edited

Legend:

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

    r338 r344  
    655655if (w == NULL)  return;
    656656w->Hide();
     657bool ownwindow=false;  // To Check if this is one of our windows
    657658WindMList::iterator it;
    658659for(it = mWList.begin(); it != mWList.end(); it++)
    659   if ((*it).second == w)  { mWList.erase(it);  break; }
     660  if ((*it).second == w)  { mWList.erase(it);  ownwindow = true; break; }
    660661if (w == mGrW) { mGrW = NULL;  mGrIdx = -1; }
    661662if (w == mStW) { mStW = NULL;  mStIdx = -1; m[2]->SetSensitivity("StackTools", false); }
    662663if (w == mCurWin) mCurWin = NULL;
     664
     665if (!ownwindow) return; // We do nothing if this is not a window we have created ...
     666
    663667int k;
    664668PIWdg* cwd;
Note: See TracChangeset for help on using the changeset viewer.