Update of /cvsroot/osmose-dev/osmose/src/osmose/application/elementeditor
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11829/src/osmose/application/elementeditor
Modified Files:
OSMImageElementEditorPanel.java
Log Message:
Removed usage of deprecated APIs
Index: OSMImageElementEditorPanel.java
===================================================================
RCS file: /cvsroot/osmose-dev/osmose/src/osmose/application/elementeditor/OSMImageElementEditorPanel.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** OSMImageElementEditorPanel.java 3 Oct 2007 21:31:14 -0000 1.2
--- OSMImageElementEditorPanel.java 4 Apr 2008 22:07:14 -0000 1.3
***************
*** 164,168 ****
if("INPUT".equals(e.getActionCommand())) {
OSMImageSizeSelector dlg = new OSMImageSizeSelector(OSMApplication.ApplicationFrame);
! dlg.show();
if(dlg.isOk())
{
--- 164,168 ----
if("INPUT".equals(e.getActionCommand())) {
OSMImageSizeSelector dlg = new OSMImageSizeSelector(OSMApplication.ApplicationFrame);
! dlg.setVisible(true);
if(dlg.isOk())
{
|