From 51ea368c01fdb1b3d02819b23457220a0aec9336 Mon Sep 17 00:00:00 2001 From: Vladimir Eliezer Tokarev Date: Sat, 1 Oct 2016 11:07:43 +0300 Subject: [PATCH] Removed the packages problem --- .../SelectCandidateByPictureController.java | 2 +- .../SelectCandidateByPictureLoader.java | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) 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);