diff --git a/voting-booth-gui/src/main/java/meerkat/voting/gui/select_candidate_by_picture/SelectCandidateByPictureController.java b/voting-booth-gui/src/main/java/meerkat/voting/gui/select_candidate_by_picture/SelectCandidateByPictureController.java index 87eb78d..5aa1d3e 100644 --- a/voting-booth-gui/src/main/java/meerkat/voting/gui/select_candidate_by_picture/SelectCandidateByPictureController.java +++ b/voting-booth-gui/src/main/java/meerkat/voting/gui/select_candidate_by_picture/SelectCandidateByPictureController.java @@ -1,4 +1,4 @@ -package main.select_candidate_by_picture; +package meerkat.voting.gui.select_candidate_by_picture; import javafx.fxml.FXML; import javafx.geometry.Insets; diff --git a/voting-booth-gui/src/main/java/meerkat/voting/gui/select_candidate_by_picture/SelectCandidateByPictureLoader.java b/voting-booth-gui/src/main/java/meerkat/voting/gui/select_candidate_by_picture/SelectCandidateByPictureLoader.java index 3c81cc6..ccac32b 100644 --- a/voting-booth-gui/src/main/java/meerkat/voting/gui/select_candidate_by_picture/SelectCandidateByPictureLoader.java +++ b/voting-booth-gui/src/main/java/meerkat/voting/gui/select_candidate_by_picture/SelectCandidateByPictureLoader.java @@ -5,7 +5,6 @@ import javafx.scene.Parent; import javafx.stage.Stage; import meerkat.voting.gui.TwoWayNode; import java.io.IOException; - /** * Created by Vladimir Eliezer Tokarev on 8/27/2016. * SelectCandidateByPictureLoader creates the pannel which gives the option to choose by picture @@ -30,7 +29,7 @@ public class SelectCandidateByPictureLoader { */ public TwoWayNode GetSelectCandidateByPicture() throws IOException { Parent selectByPicture = fxmlLoader.load(); - SelectCandidateByPictureController controller = fxmlLoader.getController(); + meerkat.voting.gui.select_candidate_by_picture.SelectCandidateByPictureController controller = fxmlLoader.getController(); // set the controller to be functional TwoWayNode controller.SetParent(selectByPicture);