From 922c5197da8fb539d9a6b6528c7b55dd0b4707d9 Mon Sep 17 00:00:00 2001 From: Seil0 Date: Wed, 15 May 2019 16:25:08 +0200 Subject: [PATCH] update to JavaFX 12.0.1 --- pom.xml | 6 +++--- .../java/com/cemu_UI/application/Main.java | 1 + .../uiElements/JFXOkayCancelAlert.java | 21 +++++++++++++++++++ 3 files changed, 25 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index f085e5a..b23ea1b 100644 --- a/pom.xml +++ b/pom.xml @@ -27,19 +27,19 @@ org.openjfx javafx-controls - 12 + 12.0.1 org.openjfx javafx-fxml - 12 + 12.0.1 org.openjfx javafx-media - 12 + 12.0.1 diff --git a/src/main/java/com/cemu_UI/application/Main.java b/src/main/java/com/cemu_UI/application/Main.java index cf5db89..fabc3fa 100644 --- a/src/main/java/com/cemu_UI/application/Main.java +++ b/src/main/java/com/cemu_UI/application/Main.java @@ -18,6 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ + package com.cemu_UI.application; import java.io.File; diff --git a/src/main/java/com/cemu_UI/uiElements/JFXOkayCancelAlert.java b/src/main/java/com/cemu_UI/uiElements/JFXOkayCancelAlert.java index cb90e58..8d3aa23 100644 --- a/src/main/java/com/cemu_UI/uiElements/JFXOkayCancelAlert.java +++ b/src/main/java/com/cemu_UI/uiElements/JFXOkayCancelAlert.java @@ -1,3 +1,24 @@ +/** + * cemu_UI + * + * Copyright 2017-2019 <@Seil0> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + */ + package com.cemu_UI.uiElements; import com.cemu_UI.controller.XMLController;