Changeset 3374 in Sophya for trunk/SophyaPI/PIext/pisiadw.cc


Ignore:
Timestamp:
Nov 6, 2007, 12:21:54 AM (18 years ago)
Author:
ansari
Message:

suite corrections pour eviter blocage: Request UpdateObjMgrWindow() -> SOpExObj::AddOpe()/run() - Reza 05/11/2007

File:
1 edited

Legend:

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

    r3366 r3374  
    7272{
    7373PIWindow::Show();
    74 dap->ObjMgr()->UpdateObjMgrWindow( -1 );
     74SetUnSensitive();
     75UpdateList(-1);
    7576return;
    7677}
     
    9697  }
    9798else if (msg >= 30000) {
    98   dap->ObjMgr()->UpdateObjMgrWindow(msg-30000);
     99  UpdateList(msg-30000);
    99100  return;
    100101  }
     
    155156{
    156157if (!Visible()) return;
    157 if ( (did >0) &&(did != GetCurDirId()) )  return;
    158 dap->ObjMgr()->UpdateObjMgrWindow(did);
     158if ( (did >= 0)&&(did != GetCurDirId()) )  return;
     159char buff[48];
     160sprintf(buff,"UPD %d",did);
     161string cmd = buff;
     162dap->getSOpExObj()->AddOpe(cmd);
    159163return;
    160164}
Note: See TracChangeset for help on using the changeset viewer.