Module Client, clss GUIStringTool : modif nom méthd

This commit is contained in:
Notmoo 2017-08-19 19:21:49 +02:00
parent d6c9e58519
commit 0ec6f12286
2 changed files with 2 additions and 5 deletions

View File

@ -8,7 +8,6 @@ import com.pqt.client.gui.ressources.strings.GUIStringTool;
import com.pqt.core.entities.product.Product;
import com.pqt.core.entities.sale.Sale;
import javafx.application.Platform;
import javafx.collections.FXCollections;
import javafx.geometry.Pos;
import javafx.scene.control.*;
import javafx.scene.input.KeyCode;
@ -16,8 +15,6 @@ import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import java.util.ArrayList;
public class CommandComposerSaleDisplayer implements IFXSaleDisplayerComponent {
private SimpleSaleComponentFirerer firerer;
@ -35,7 +32,7 @@ public class CommandComposerSaleDisplayer implements IFXSaleDisplayerComponent {
mainPane = new BorderPane();
mainPane.getStyleClass().add("sale-displayer");
Label title = new Label(GUIStringTool.getCommandComposerTitleTitle());
Label title = new Label(GUIStringTool.getCommandComposerTitleLabel());
title.setAlignment(Pos.CENTER);
title.getStyleClass().add(GUICssTool.getTitleTextStyleClass());

View File

@ -60,7 +60,7 @@ public class GUIStringTool {
};
}
public static String getCommandComposerTitleTitle() {
public static String getCommandComposerTitleLabel() {
return "Commande";
}