main_win.cc
branchgui
changeset 127 656ac25e009b
parent 119 24ff0448d854
child 130 3533c2d9a865
equal deleted inserted replaced
36:b9fd16858ba2 37:223fd546a4f2
   455 }
   455 }
   456 
   456 
   457 void MainWin::createNewMapWinTabString(std::string tabname, bool itisedge)
   457 void MainWin::createNewMapWinTabString(std::string tabname, bool itisedge)
   458 {
   458 {
   459   int i=0;
   459   int i=0;
   460   for(;((i<tabnames.size())&&(tabnames[i]!=tabname));i++)
   460   for(;((i<(int)tabnames.size())&&(tabnames[i]!=tabname));i++)
   461     {
   461     {
   462     }
   462     }
   463   createNewMapWinAfterSignal(tabs[i], itisedge);
   463   createNewMapWinAfterSignal(tabs[i], itisedge);
   464 }
   464 }
   465 
   465