- Timestamp:
- Apr 30, 2013, 2:05:15 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/installer2/src/net/oni2/aeinstaller/gui/settings/SettingsDialog.java
r720 r840 15 15 16 16 import net.oni2.SettingsManager; 17 import net.oni2.resourcebundle.UTF8ResourceBundleLoader; 17 18 18 19 import org.javabuilders.BuildResult; … … 25 26 private static final long serialVersionUID = -5719515325671846620L; 26 27 27 private ResourceBundle bundle = ResourceBundle28 private ResourceBundle bundle = UTF8ResourceBundleLoader 28 29 .getBundle("net.oni2.aeinstaller.localization." 29 30 + getClass().getSimpleName()); … … 72 73 73 74 chkNotifyOnStart.setSelected(set.get("notifyupdates", true)); 74 chkNotifyDepsAfterInstall.setSelected(set.get("notifyDepsAfterInstall", false)); 75 chkNotifyDepsAfterInstall.setSelected(set.get("notifyDepsAfterInstall", 76 false)); 75 77 chkCopyIntro.setSelected(set.get("copyintro", false)); 76 78 chkCopyOutro.setSelected(set.get("copyoutro", true)); … … 82 84 83 85 set.put("notifyupdates", chkNotifyOnStart.isSelected()); 84 set.put("notifyDepsAfterInstall", chkNotifyDepsAfterInstall.isSelected()); 86 set.put("notifyDepsAfterInstall", 87 chkNotifyDepsAfterInstall.isSelected()); 85 88 set.put("copyintro", chkCopyIntro.isSelected()); 86 89 set.put("copyoutro", chkCopyOutro.isSelected());
Note:
See TracChangeset
for help on using the changeset viewer.