Attempts to fix NPE when publishing a conference in chat room.

cusax-fix 4882
hristoterezov 12 years ago
parent 7cbe754b4d
commit a7e685476c

@ -414,8 +414,9 @@ public void showChatConferenceDialog()
}
chatConferencesDialog.setVisible(true);
chatConferencesDialog.pack();
chatConferencesDialog.toFront();
chatConferencesDialog.pack();
}
/**

@ -294,7 +294,7 @@ else if(source.equals(endConference))
{
chatRoom.publishConference(null, null);
}
this.dispose();
this.setVisible(false);
}
else if(source instanceof JRadioButton)

Loading…
Cancel
Save