Skip to content
Snippets Groups Projects
Commit 3a8cff19 authored by Yann Boucher's avatar Yann Boucher
Browse files

Suppression d'un bout d'anglais dans UIBuilderVisitor

parent fdc08f98
No related branches found
No related tags found
No related merge requests found
Pipeline #79592 passed
...@@ -164,9 +164,9 @@ void UIBuilderVisitor::visit(PropertyList &list) ...@@ -164,9 +164,9 @@ void UIBuilderVisitor::visit(PropertyList &list)
frame->setLayout(new QHBoxLayout); frame->setLayout(new QHBoxLayout);
frame->layout()->setContentsMargins(0,0,0,0); frame->layout()->setContentsMargins(0,0,0,0);
QPushButton* add_button = new QPushButton("Ajouter...", current_widget()); QPushButton* add_button = new QPushButton("Insert...", current_widget());
QPushButton* del_button = new QPushButton("Supprimer...", current_widget()); QPushButton* del_button = new QPushButton("Remove...", current_widget());
QPushButton* widgetGridNeighborhoodButton = new QPushButton("Grille...", current_widget()); QPushButton* widgetGridNeighborhoodButton = new QPushButton("Grid...", current_widget());
frame->layout()->addWidget(add_button); frame->layout()->addWidget(add_button);
frame->layout()->addWidget(del_button); frame->layout()->addWidget(del_button);
...@@ -207,7 +207,7 @@ void UIBuilderVisitor::visit(PropertyList &list) ...@@ -207,7 +207,7 @@ void UIBuilderVisitor::visit(PropertyList &list)
neighborhoodDialog = new NeighborhoodDialog(currentNeighborhood); neighborhoodDialog = new NeighborhoodDialog(currentNeighborhood);
if( neighborhoodDialog->exec() ) { if( neighborhoodDialog->exec() ) {
std::cout << "sacreubleu" << endl; //std::cout << "sacreubleu" << endl;
fflush(stdout); fflush(stdout);
list.clear(); list.clear();
Neighborhood* newNeighborhood = neighborhoodDialog->getNeighborhood(); Neighborhood* newNeighborhood = neighborhoodDialog->getNeighborhood();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment