mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
SPARK-1096 - Custom status messages should be sorted by name
add generics git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@11433 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
committed by
michael.will
parent
837a9d1199
commit
df6b93ecd0
@ -274,7 +274,9 @@ public class RosterDialog implements PropertyChangeListener, ActionListener {
|
||||
|
||||
|
||||
JPanel mainPanel = new JPanel() {
|
||||
public Dimension getPreferredSize() {
|
||||
private static final long serialVersionUID = -7489967438182277375L;
|
||||
|
||||
public Dimension getPreferredSize() {
|
||||
final Dimension size = super.getPreferredSize();
|
||||
size.width = 350;
|
||||
return size;
|
||||
@ -521,8 +523,8 @@ public class RosterDialog implements PropertyChangeListener, ActionListener {
|
||||
}
|
||||
|
||||
class AccountItem extends JPanel {
|
||||
|
||||
private Transport transport;
|
||||
private static final long serialVersionUID = -7657731912529801653L;
|
||||
private Transport transport;
|
||||
|
||||
public AccountItem(Icon icon, String name, Transport transport) {
|
||||
setLayout(new GridBagLayout());
|
||||
|
||||
Reference in New Issue
Block a user