--- queensgui/src/queensmain.cpp 2007/07/20 13:50:47 7 +++ queensgui/src/queensmain.cpp 2007/07/20 16:58:04 8 @@ -285,7 +285,7 @@ { QPopupMenu *contextMenu = new QPopupMenu( this ); contextMenu->setCheckable( true ); - QLabel *sortCaption = new QLabel("Sort algorithm", this); + QLabel *sortCaption = new QLabel("Container class", this); sortCaption->setAlignment( Qt::AlignCenter ); contextMenu->insertItem( sortCaption ); @@ -294,7 +294,8 @@ contextMenu->insertItem("Hash", this, SLOT( sortHash() ), 0, 3); contextMenu->insertItem("M*N Vector", this, SLOT(sortMNVector()), 0, 4); - QLabel *storageCaption = new QLabel("Storage class", this); + QLabel *storageCaption = new QLabel("Solution class", this); + storageCaption->setAlignment( Qt::AlignCenter ); contextMenu->insertItem( storageCaption ); contextMenu->insertItem("Matrix Solution", this, SLOT( storageMatrix() ), 0, 5); contextMenu->insertItem("Int Solution", this, SLOT( storageInt() ), 0, 6);