mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-3501 Fix some updating problems
X-SVN-Rev: 15958
This commit is contained in:
parent
1720a9900c
commit
086955a394
2 changed files with 9 additions and 2 deletions
|
@ -77,7 +77,7 @@ public class Resources {
|
|||
|
||||
public static String[] getAvailableLocales() {
|
||||
//Locale loc[] = null;
|
||||
String list[] = null;
|
||||
String list[] = new String[0];
|
||||
Vector locVect = new Vector();
|
||||
try {
|
||||
URL resURL = ClassLoader.getSystemResource("com/ibm/rbm/resources/RBManager.properties");
|
||||
|
@ -115,10 +115,15 @@ public class Resources {
|
|||
for (int i=0; i < listSize; i++) {
|
||||
list[i] = (String)locVect.get(i);
|
||||
}
|
||||
} catch (IOException ioe) {
|
||||
}
|
||||
catch (IOException ioe) {
|
||||
System.err.println("Can't get resources");
|
||||
ioe.printStackTrace(System.err);
|
||||
}
|
||||
catch (ClassCastException cce) {
|
||||
System.err.println("Can't get resources");
|
||||
cce.printStackTrace(System.err);
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
|
|
|
@ -261,6 +261,7 @@ public class RBManagerGUI extends JFrame implements ActionListener, MouseListene
|
|||
|
||||
public void createBundleItem() {
|
||||
new BundleItemCreationDialog(rbm, this, Resources.getTranslation("dialog_title_new_item"), true);
|
||||
updateDisplayPanels();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -675,6 +676,7 @@ public class RBManagerGUI extends JFrame implements ActionListener, MouseListene
|
|||
this, Resources.getTranslation("dialog_title_edit_item"), true);
|
||||
model.update();
|
||||
}
|
||||
updateDisplayPanels();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue