[Pixelle-commit] SF.net SVN: pixelle:[241] trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs /Pixe
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-02-18 06:17:37
|
Revision: 241
http://pixelle.svn.sourceforge.net/pixelle/?rev=241&view=rev
Author: dbrosius
Date: 2009-02-18 06:17:27 +0000 (Wed, 18 Feb 2009)
Log Message:
-----------
no autoboxing
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/PixelleExpressionDialog.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/PixelleExpressionDialog.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/PixelleExpressionDialog.java 2009-02-18 06:16:56 UTC (rev 240)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/dialogs/PixelleExpressionDialog.java 2009-02-18 06:17:27 UTC (rev 241)
@@ -512,7 +512,7 @@
Set<JFrame> frames = FrameMgr.getInstance().getFrames();
PixelleFrame frame = (PixelleFrame)JOptionPane.showInputDialog(SourcePanel.this, PixelleBundle.getString(PixelleBundle.PICK_SOURCE_LABEL), PixelleBundle.getString(PixelleBundle.TITLE), JOptionPane.QUESTION_MESSAGE, null, frames.toArray(new JFrame[frames.size()]), null);
int id = sourceTable.getRowCount();
- sourceModel.addRow(new Object[] { id, frame.getTitle() });
+ sourceModel.addRow(new Object[] { Integer.valueOf(id), frame.getTitle() });
}
});
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|