diff -r 7a20c50988ec -r a37b6966de84 QTfrontend/selectWeapon.cpp --- a/QTfrontend/selectWeapon.cpp Wed Dec 19 11:10:23 2007 +0000 +++ b/QTfrontend/selectWeapon.cpp Wed Dec 19 20:54:00 2007 +0000 @@ -86,9 +86,9 @@ QString SelWeaponWidget::getWeaponsString() const { - QString ammo("eammstore "); + QString ammo; for(int i=0; i<20; ++i) { - ammo=QString("%1%2").arg(ammo).arg((*this)[i]); + ammo += (*this)[i]; } return ammo; }