gui/main_win.cc
changeset 1910 f95eea8c34b0
parent 1889 edcb68a93a95
child 2012 224cd6aacfc1
equal deleted inserted replaced
36:b4e87f5c1341 37:251aa0c41571
   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