Rename settings package to preferences

This commit is contained in:
Manfred Karrer 2014-11-11 17:11:37 +01:00
parent 2ac43f63d4
commit 9751a5206e
11 changed files with 13 additions and 13 deletions

View file

@ -165,7 +165,7 @@ public class Navigation {
PORTFOLIO("/io/bitsquare/gui/main/portfolio/PortfolioView.fxml"),
FUNDS("/io/bitsquare/gui/main/funds/FundsView.fxml"),
MSG("/io/bitsquare/gui/main/msg/MsgView.fxml"),
PREFERENCES("/io/bitsquare/gui/main/settings/PreferencesView.fxml"),
PREFERENCES("/io/bitsquare/gui/main/preferences/PreferencesView.fxml"),
ACCOUNT("/io/bitsquare/gui/main/account/AccountView.fxml"),
@ -188,8 +188,8 @@ public class Navigation {
TRANSACTIONS("/io/bitsquare/gui/main/funds/transactions/TransactionsView.fxml"),
// preferences
APPLICATION_PREFERENCES("/io/bitsquare/gui/main/settings/application/ApplicationPreferencesView.fxml"),
NETWORK_PREFERENCES("/io/bitsquare/gui/main/settings/network/NetworkPreferencesView.fxml"),
APPLICATION_PREFERENCES("/io/bitsquare/gui/main/preferences/application/ApplicationPreferencesView.fxml"),
NETWORK_PREFERENCES("/io/bitsquare/gui/main/preferences/network/NetworkPreferencesView.fxml"),
// account
ACCOUNT_SETUP("/io/bitsquare/gui/main/account/setup/AccountSetupView.fxml"),

View file

@ -19,7 +19,7 @@
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<TabPane fx:id="root" fx:controller="io.bitsquare.gui.main.settings.PreferencesViewCB"
<TabPane fx:id="root" fx:controller="io.bitsquare.gui.main.preferences.PreferencesViewCB"
AnchorPane.bottomAnchor="0" AnchorPane.leftAnchor="0"
AnchorPane.rightAnchor="0" AnchorPane.topAnchor="0"
xmlns:fx="http://javafx.com/fxml">

View file

@ -15,7 +15,7 @@
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.gui.main.settings;
package io.bitsquare.gui.main.preferences;
import io.bitsquare.gui.CachedViewCB;
import io.bitsquare.gui.Navigation;

View file

@ -15,7 +15,7 @@
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.gui.main.settings.application;
package io.bitsquare.gui.main.preferences.application;
import io.bitsquare.gui.UIModel;

View file

@ -15,7 +15,7 @@
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.gui.main.settings.application;
package io.bitsquare.gui.main.preferences.application;
import io.bitsquare.gui.PresentationModel;

View file

@ -20,7 +20,7 @@
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane fx:id="root" fx:controller="io.bitsquare.gui.main.settings.application.ApplicationPreferencesViewCB"
<AnchorPane fx:id="root" fx:controller="io.bitsquare.gui.main.preferences.application.ApplicationPreferencesViewCB"
xmlns:fx="http://javafx.com/fxml">
<Label text="app"/>

View file

@ -15,7 +15,7 @@
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.gui.main.settings.application;
package io.bitsquare.gui.main.preferences.application;
import io.bitsquare.gui.CachedViewCB;

View file

@ -15,7 +15,7 @@
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.gui.main.settings.network;
package io.bitsquare.gui.main.preferences.network;
import io.bitsquare.gui.UIModel;

View file

@ -15,7 +15,7 @@
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.gui.main.settings.network;
package io.bitsquare.gui.main.preferences.network;
import io.bitsquare.gui.PresentationModel;

View file

@ -20,7 +20,7 @@
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane fx:id="root" fx:controller="io.bitsquare.gui.main.settings.network.NetworkPreferencesViewCB"
<AnchorPane fx:id="root" fx:controller="io.bitsquare.gui.main.preferences.network.NetworkPreferencesViewCB"
xmlns:fx="http://javafx.com/fxml">
<Label text="net"/>

View file

@ -15,7 +15,7 @@
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
*/
package io.bitsquare.gui.main.settings.network;
package io.bitsquare.gui.main.preferences.network;
import io.bitsquare.gui.CachedViewCB;