Правка
This commit is contained in:
parent
90fda89057
commit
b1d13cb621
@ -262,7 +262,7 @@ public class FormMapWithArmoredCars extends JFrame{
|
||||
fd.setVisible(true);
|
||||
String filename = fd.getFile();
|
||||
if (filename != null) {
|
||||
if (type.contains("Файл карты")) {
|
||||
if (type.contains("Файл")) {
|
||||
if (_mapsCollection.SaveData(fd.getDirectory() + filename))
|
||||
{
|
||||
JOptionPane.showMessageDialog(null, "Сохранение прошло успешно");
|
||||
@ -270,7 +270,7 @@ public class FormMapWithArmoredCars extends JFrame{
|
||||
else {
|
||||
JOptionPane.showMessageDialog(null, "Не сохранилось");
|
||||
}
|
||||
} else if (type.contains("Файл объекта")){
|
||||
} else if (type.contains("Файл карты")){
|
||||
if (_mapsCollection.SaveDataMap(fd.getDirectory() + filename, (String) listBoxMaps.getSelectedValue())) {
|
||||
JOptionPane.showMessageDialog(null, "Сохранение прошло успешно");
|
||||
} else {
|
||||
@ -286,7 +286,7 @@ public class FormMapWithArmoredCars extends JFrame{
|
||||
fd.setVisible(true);
|
||||
String filename = fd.getFile();
|
||||
if (filename != null) {
|
||||
if (type.contains("Файл карты")) {
|
||||
if (type.contains("Файл")) {
|
||||
if (_mapsCollection.LoadData(fd.getDirectory() + filename))
|
||||
{
|
||||
JOptionPane.showMessageDialog(null, "Загрузка прошла успешно");
|
||||
@ -295,7 +295,7 @@ public class FormMapWithArmoredCars extends JFrame{
|
||||
else {
|
||||
JOptionPane.showMessageDialog(null, "Не загрузилось");
|
||||
}
|
||||
} else if (type.contains("Файл объекта")){
|
||||
} else if (type.contains("Файл карты")){
|
||||
if (_mapsCollection.LoadDataMap(fd.getDirectory() + filename)) {
|
||||
JOptionPane.showMessageDialog(null, "Загрузка прошла успешно");
|
||||
ReloadMaps();
|
||||
|
Loading…
Reference in New Issue
Block a user