ICU-3501 Fix some updating problems

X-SVN-Rev: 15958
This commit is contained in:
George Rhoten 2004-06-30 00:33:11 +00:00
parent 1720a9900c
commit 086955a394
2 changed files with 9 additions and 2 deletions

View file

@ -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;
}

View file

@ -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();
}
}